diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-20 06:30:08 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-20 06:30:08 (GMT) |
commit | 05a45599d7c7e7584a80d7ef70dc47e984664619 (patch) | |
tree | 67d35b00825fa7ab92cb32bf9db4ff902259c324 /pyconfig.h.in | |
parent | 910b5eec07543dc4e7f4f35648a025fe7b032249 (diff) | |
download | cpython-05a45599d7c7e7584a80d7ef70dc47e984664619.zip cpython-05a45599d7c7e7584a80d7ef70dc47e984664619.tar.gz cpython-05a45599d7c7e7584a80d7ef70dc47e984664619.tar.bz2 |
Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Schroeder.
This was a fair amount of rework of the patch. Refactored test_fork1 so it
could be reused by the new tests for wait3/4. Also made them into new style
unittests (derive from unittest.TestCase).
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 9c3ca53..8df7f9b 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -670,6 +670,12 @@ /* Define to 1 if you have the <utime.h> header file. */ #undef HAVE_UTIME_H +/* Define to 1 if you have the `wait3' function. */ +#undef HAVE_WAIT3 + +/* Define to 1 if you have the `wait4' function. */ +#undef HAVE_WAIT4 + /* Define to 1 if you have the `waitpid' function. */ #undef HAVE_WAITPID |