diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-06-25 10:13:40 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-06-25 10:13:40 (GMT) |
commit | bc808224b6fb6f829df4bf6bb04d3a64f6e4ddcb (patch) | |
tree | 79b866b9eb1793f8d6321d46c3c642adfa1e00ca /pyconfig.h.in | |
parent | bb66972c0b263278b6468e59a240af5c7b771966 (diff) | |
download | cpython-bc808224b6fb6f829df4bf6bb04d3a64f6e4ddcb.zip cpython-bc808224b6fb6f829df4bf6bb04d3a64f6e4ddcb.tar.gz cpython-bc808224b6fb6f829df4bf6bb04d3a64f6e4ddcb.tar.bz2 |
Issue #12303: Add sigwaitinfo() and sigtimedwait() to the signal module.
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 4935077..d2af3e9 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -743,9 +743,15 @@ /* Define to 1 if you have the `sigrelse' function. */ #undef HAVE_SIGRELSE +/* Define to 1 if you have the `sigtimedwait' function. */ +#undef HAVE_SIGTIMEDWAIT + /* Define to 1 if you have the `sigwait' function. */ #undef HAVE_SIGWAIT +/* Define to 1 if you have the `sigwaitinfo' function. */ +#undef HAVE_SIGWAITINFO + /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF |