diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2019-01-16 13:29:26 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-01-16 13:29:26 (GMT) |
commit | 92b8322e7ea04b239cb1cb87b78d952f13ddfebb (patch) | |
tree | afcf4294d4949a59dc2d3383e11b5c2b91970597 /configure.ac | |
parent | 9daecf37a571e98aaf43a387bcc9e41a7132f477 (diff) | |
download | cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.zip cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.tar.gz cpython-92b8322e7ea04b239cb1cb87b78d952f13ddfebb.tar.bz2 |
bpo-35674: Add os.posix_spawnp() (GH-11554)
Add a new os.posix_spawnp() function.
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 bd09a9c..262c726 100644 --- a/configure.ac +++ b/configure.ac @@ -3505,7 +3505,7 @@ AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ initgroups kill killpg lchown lockf linkat lstat lutimes mmap \ memrchr mbrtowc mkdirat mkfifo \ mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \ - posix_fallocate posix_fadvise posix_spawn pread preadv preadv2 \ + posix_fallocate posix_fadvise posix_spawn posix_spawnp pread preadv preadv2 \ pthread_init pthread_kill putenv pwrite pwritev pwritev2 readlink readlinkat readv realpath renameat \ sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \ setgid sethostname \ |