diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6357491725d..837d946a26e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2013-06-27 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Do not tickle glib SIGCHLD handling if Cygwin (Bug#14569). | ||
| 4 | This mostly consists of undoing recent changes. | ||
| 5 | * callproc.c (Fcall_process): | ||
| 6 | * process.c (create_process): | ||
| 7 | Do not worry about catching SIGCHLD here, undoing previous change. | ||
| 8 | * nsterm.m (ns_term_init): Re-catch SIGCHLD, undoing previous change. | ||
| 9 | * process.c, process.h (catch_child_signal): | ||
| 10 | No longer extern if !NS_IMPL_GNUSTEP, undoing 06-22 change. | ||
| 11 | * process.c (catch_child_handler): Don't worry about being called | ||
| 12 | lazily and do not assume caller has blocked SIGCHLD, undoing | ||
| 13 | previous change. Move first-time stuff back to | ||
| 14 | init_process_emacs, undoing 06-22 change. If CYGWIN, do not | ||
| 15 | tickle glib, as that causes Cygwin bootstrap to fail. Do not | ||
| 16 | set lib_child_handler if it's already initialized, which may | ||
| 17 | help avoid problems on GNUStep. | ||
| 18 | |||
| 1 | 2013-06-23 Paul Eggert <eggert@cs.ucla.edu> | 19 | 2013-06-23 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 20 | ||
| 3 | A more-conservative workaround for Cygwin SIGCHLD issues (Bug#14569). | 21 | A more-conservative workaround for Cygwin SIGCHLD issues (Bug#14569). |