diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-08 00:03:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-08 00:03:15 (GMT) |
commit | d49b1f14de90ce31bb0777ac232c0ee1ec5ed6ce (patch) | |
tree | a201ad26f808cf4d1cefa8f57fe397e88d1afc77 /Doc/whatsnew | |
parent | b3e7219abfdb52321b7e8f1f57499ece23a7d2f8 (diff) | |
download | cpython-d49b1f14de90ce31bb0777ac232c0ee1ec5ed6ce.zip cpython-d49b1f14de90ce31bb0777ac232c0ee1ec5ed6ce.tar.gz cpython-d49b1f14de90ce31bb0777ac232c0ee1ec5ed6ce.tar.bz2 |
Issue #8407: 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 than one signal and know which signals were raised.
Diffstat (limited to 'Doc/whatsnew')
-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 14f06af..37f96ce 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -131,6 +131,10 @@ signal * :func:`~signal.sigpending`: examine pending functions ; * :func:`~signal.sigwait`: wait a signal. +* 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 + than one signal and know which signals were raised. + Optimizations ============= |