diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-03 16:18:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-03 16:18:59 (GMT) |
commit | 6f26be09e0f88edc7b2cdb4d6695c79dd6105a28 (patch) | |
tree | f2d201cfd0bfa7dbfae209718f5b536a5f81f306 /pyconfig.h.in | |
parent | f44ce8748d4dcae7a359b147e5944acb4ed94638 (diff) | |
download | cpython-6f26be09e0f88edc7b2cdb4d6695c79dd6105a28.zip cpython-6f26be09e0f88edc7b2cdb4d6695c79dd6105a28.tar.gz cpython-6f26be09e0f88edc7b2cdb4d6695c79dd6105a28.tar.bz2 |
Issue #11849: Make it more likely for the system allocator to release
free()d memory arenas on glibc-based systems. Patch by Charles-François
Natali.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 8b5c592..89565a3 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -491,6 +491,9 @@ /* Define this if you have the makedev macro. */ #undef HAVE_MAKEDEV +/* Define this if mallopt can set malloc mmap threshold. */ +#undef HAVE_MALLOPT_MMAP_THRESHOLD + /* Define to 1 if you have the `mbrtowc' function. */ #undef HAVE_MBRTOWC |