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 /Doc/whatsnew/3.3.rst | |
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 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index e1d1cb4..4374d02 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -169,6 +169,10 @@ signal * :func:`~signal.pthread_kill`: send a signal to a thread ; * :func:`~signal.sigpending`: examine pending functions ; * :func:`~signal.sigwait`: wait a signal. + * :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed + information about it. + * :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a + timeout. * The signal handler writes the signal number as a single byte instead of a nul byte into the wakeup file descriptor. So it is possible to wait more |