aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-05-29 21:12:08 -0700
committerPaul Eggert2014-05-29 21:12:08 -0700
commit8cf1e6e67926683e38809adced986d255124afd5 (patch)
tree778900c1d56daa5ffebf44e14c51d0f6a9410a40 /src/ChangeLog
parentacc16b66ffe8e3b0f3568c5ae2e3bf0dff2bc2fa (diff)
downloademacs-8cf1e6e67926683e38809adced986d255124afd5.tar.gz
emacs-8cf1e6e67926683e38809adced986d255124afd5.zip
Don't let SIGINT handling block SIGCHLD indefinitely.
* atimer.c (block_atimers): * callproc.c (block_child_signal): Block SIGINT too; otherwise, its handler might now unblock signals that it shouldn't. * keyboard.c (read_char): Clear signal mask, since we may be in a SIGINT handler, and many signals may be masked. * keyboard.c (handle_interrupt): * sysdep.c (handle_arith_signal): Clear signal mask instead of just unblocking the signal that was received, since several signals may be blocked at this point. Fixes: debbugs:17561
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 33952e159bf..6ecf7dbee99 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,16 @@
12014-05-30 Paul Eggert <eggert@cs.ucla.edu>
2
3 Don't let SIGINT handling block SIGCHLD indefinitely (Bug#17561).
4 * atimer.c (block_atimers):
5 * callproc.c (block_child_signal): Block SIGINT too;
6 otherwise, its handler might now unblock signals that it shouldn't.
7 * keyboard.c (read_char): Clear signal mask, since we may
8 be in a SIGINT handler, and many signals may be masked.
9 * keyboard.c (handle_interrupt):
10 * sysdep.c (handle_arith_signal):
11 Clear signal mask instead of just unblocking the signal that
12 was received, since several signals may be blocked at this point.
13
12014-05-29 Eli Zaretskii <eliz@gnu.org> 142014-05-29 Eli Zaretskii <eliz@gnu.org>
2 15
3 * Makefile.in (TEMACS_POST_LINK): Remove target. 16 * Makefile.in (TEMACS_POST_LINK): Remove target.