diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-07 23:46:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-07 23:46:11 (GMT) |
commit | b3e7219abfdb52321b7e8f1f57499ece23a7d2f8 (patch) | |
tree | 59c85547d493099af2365d7ccf48245d501b11b0 /Doc/whatsnew | |
parent | 2c736bb38ec6089f5360e6a7f2f76a70fb869352 (diff) | |
download | cpython-b3e7219abfdb52321b7e8f1f57499ece23a7d2f8.zip cpython-b3e7219abfdb52321b7e8f1f57499ece23a7d2f8.tar.gz cpython-b3e7219abfdb52321b7e8f1f57499ece23a7d2f8.tar.bz2 |
Issue #8407: Add pthread_kill(), sigpending() and sigwait() functions to the
signal module.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 0ab4fc8..14f06af 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -123,10 +123,13 @@ sys signal ------ -* The :mod:`signal` module has a new :func:`~signal.pthread_sigmask` function - to fetch and/or change the signal mask of the calling thread. +* The :mod:`signal` module has a new functions: - (Contributed by Jean-Paul Calderone in :issue:`8407`) + * :func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the + calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`) ; + * :func:`~signal.pthread_kill`: send a signal to a thread ; + * :func:`~signal.sigpending`: examine pending functions ; + * :func:`~signal.sigwait`: wait a signal. Optimizations |