aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-06-22 12:01:47 -0700
committerPaul Eggert2013-06-22 12:01:47 -0700
commit0dfeed58d3244487a545bb4d4e19658eb299937b (patch)
tree8d63fe126e9983af886f1a8e3d4bbd5f38282633 /src/ChangeLog
parentf86852b4a3c34213f93fc5de5cb1632b49962023 (diff)
downloademacs-0dfeed58d3244487a545bb4d4e19658eb299937b.tar.gz
emacs-0dfeed58d3244487a545bb4d4e19658eb299937b.zip
Clean up SIGCHLD handling a bit.
* process.c, process.h (catch_child_signal): Now always extern, even if !NS_IMPL_GNUSTEP. * process.c (catch_child_signal): Move glib tickler here from init_process_emacs, so that it's done earlier in Emacs initialization. Also move the noninteractive && !initialized check here from init_process_emacs. This is all a bit cleaner for GNUish platforms, and I hope it works around the Cygwin bug. * sysdep.c (init_signals): Invoke catch_child_signal here, so that glib signal handling is tickled before glib creates threads. Fixes: debbugs:14569
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 36709eb5107..202331dac53 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,16 @@
12013-06-22 Paul Eggert <eggert@cs.ucla.edu> 12013-06-22 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Clean up SIGCHLD handling a bit (Bug#14569).
4 * process.c, process.h (catch_child_signal):
5 Now always extern, even if !NS_IMPL_GNUSTEP.
6 * process.c (catch_child_signal): Move glib tickler here from
7 init_process_emacs, so that it's done earlier in Emacs
8 initialization. Also move the noninteractive && !initialized
9 check here from init_process_emacs. This is all a bit cleaner for
10 GNUish platforms, and I hope it works around the Cygwin bug.
11 * sysdep.c (init_signals): Invoke catch_child_signal here, so
12 that glib signal handling is tickled before glib creates threads.
13
3 * process.c (wait_reading_process_output): Avoid int overflow 14 * process.c (wait_reading_process_output): Avoid int overflow
4 when reading more than 2 GiB total from a process. 15 when reading more than 2 GiB total from a process.
5 16