diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-26 00:11:02 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-26 00:11:02 (GMT) |
commit | f0effe637988e936b5a6ece2da789b67723d675c (patch) | |
tree | dc6accefaa99f0bda4e6478b729ae3c24f755472 /pyconfig.h.in | |
parent | 61ea8a0d286226ee8b773a01bb2da6b4aa03eb8d (diff) | |
download | cpython-f0effe637988e936b5a6ece2da789b67723d675c.zip cpython-f0effe637988e936b5a6ece2da789b67723d675c.tar.gz cpython-f0effe637988e936b5a6ece2da789b67723d675c.tar.bz2 |
Better resolution for issue #11849: Ensure that free()d memory arenas are really released
on POSIX systems supporting anonymous memory mappings. Patch by Charles-François Natali.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index efe732f..6b49721 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -512,9 +512,6 @@ /* Define this if you have the makedev macro. */ #undef HAVE_MAKEDEV -/* Define if mallopt can set malloc mmap threshold. */ -#undef HAVE_MALLOPT_MMAP_THRESHOLD - /* Define to 1 if you have the `mbrtowc' function. */ #undef HAVE_MBRTOWC @@ -545,6 +542,9 @@ /* Define to 1 if you have the `mktime' function. */ #undef HAVE_MKTIME +/* Define to 1 if you have the `mmap' function. */ +#undef HAVE_MMAP + /* Define to 1 if you have the `mremap' function. */ #undef HAVE_MREMAP |