diff options
| author | Paul Eggert | 2013-06-23 11:18:47 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-06-23 11:18:47 -0700 |
| commit | c7041908b82205af2f812f9de782003d975f53da (patch) | |
| tree | 6d0d071cc0cd36cf172a18b92e5b1f41c3299b80 /src/ChangeLog | |
| parent | 18bb9e21f3a95114d34947283e76a973692b526c (diff) | |
| download | emacs-c7041908b82205af2f812f9de782003d975f53da.tar.gz emacs-c7041908b82205af2f812f9de782003d975f53da.zip | |
Try to avoid malloc SEGVs on Cygwin.
* callproc.c, process.h (block_child_signal, unblock_child_signal):
Now extern.
* emacs.c (main): Catch SIGCHLD just before initializing gfilenotify.
* process.c (catch_child_signal): Block SIGCHLD while futzing with
the SIGCHLD handler, since the code is not atomic and (due to glib)
signals may be arriving now.
* sysdep.c (init_signals): Do not catch child signals here;
'main' now does that later, at a safer time.
Fixes: debbugs:14569
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 202331dac53..b2773ddbf50 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2013-06-23 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Try to avoid malloc SEGVs on Cygwin (Bug#14569). | ||
| 4 | * callproc.c, process.h (block_child_signal, unblock_child_signal): | ||
| 5 | Now extern. | ||
| 6 | * emacs.c (main): Catch SIGCHLD just before initializing gfilenotify. | ||
| 7 | * process.c (catch_child_signal): Block SIGCHLD while futzing with | ||
| 8 | the SIGCHLD handler, since the code is not atomic and (due to glib) | ||
| 9 | signals may be arriving now. | ||
| 10 | * sysdep.c (init_signals): Do not catch child signals here; | ||
| 11 | 'main' now does that later, at a safer time. | ||
| 12 | |||
| 1 | 2013-06-22 Paul Eggert <eggert@cs.ucla.edu> | 13 | 2013-06-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 14 | ||
| 3 | Clean up SIGCHLD handling a bit (Bug#14569). | 15 | Clean up SIGCHLD handling a bit (Bug#14569). |