diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-05-27 16:48:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <antoine@python.org> | 2019-05-27 16:48:16 (GMT) |
commit | 02db696732c031d9a0265dc9bbf4f5b1fad042b3 (patch) | |
tree | e98de473936501302c683c984a9f8b4fdccf6dd2 /configure.ac | |
parent | 331a6a56e9a9c72f3e4605987fabdaec72677702 (diff) | |
download | cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.zip cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.tar.gz cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.tar.bz2 |
bpo-32941: Add madvise() for mmap objects (GH-6172)
Allow mmap objects to access the madvise() system call.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5e56519..c743edf 100644 --- a/configure.ac +++ b/configure.ac @@ -3527,7 +3527,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getresuid getresgid getpwent getpwnam_r getpwuid_r getspnam getspent getsid getwd \ if_nameindex \ - mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ + madvise mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ posix_fallocate posix_fadvise posix_spawn posix_spawnp pread preadv preadv2 \ pthread_condattr_setclock pthread_init pthread_kill putenv pwrite pwritev pwritev2 \ readlink readlinkat readv realpath renameat \ |