diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d9e99722319..44ebe76555c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 1 | 2014-03-25 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Handle sigmask better with nested signal handlers (Bug#15561). | ||
| 4 | * atimer.c (sigmask_atimers): Remove. | ||
| 5 | Remaining use rewritten to use body of this function. | ||
| 6 | * atimer.c (block_atimers, unblock_atimers): | ||
| 7 | * callproc.c (block_child_signal, unblock_child_signal): | ||
| 8 | * sysdep.c (block_tty_out_signal, unblock_tty_out_signal): | ||
| 9 | New arg OLDSET. All callers changed. | ||
| 10 | * atimer.c (block_atimers, unblock_atimers): | ||
| 11 | * callproc.c (block_child_signal, unblock_child_signal): | ||
| 12 | * keyboard.c (handle_interrupt): | ||
| 13 | * sound.c (vox_configure, vox_close): | ||
| 14 | Restore the old signal mask rather than unilaterally clearing bits | ||
| 15 | from the mask, in case a handler is running within another | ||
| 16 | handler. All callers changed. | ||
| 17 | * lisp.h, process.c, process.h, term.c: | ||
| 18 | Adjust decls and callers to match new API. | ||
| 19 | * sysdep.c (emacs_sigaction_init): Don't worry about masking SIGFPE; | ||
| 20 | signal handlers aren't supposed to use floating point anyway. | ||
| 21 | (handle_arith_signal): Unblock just SIGFPE rather than clearing mask. | ||
| 22 | |||
| 1 | 2014-03-23 Daniel Colascione <dancol@dancol.org> | 23 | 2014-03-23 Daniel Colascione <dancol@dancol.org> |
| 2 | 24 | ||
| 3 | Split gc_sweep into discrete functions for legibility and better | 25 | Split gc_sweep into discrete functions for legibility and better |