diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d51e67b4a12..6584d610532 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2006-06-01 Micha,Ak(Bl Cadilhac <michael.cadilhac@lrde.org> | ||
| 2 | |||
| 3 | * process.c (deleted_pid_list): New variable to store the pids | ||
| 4 | of deleted processes. Declare it only if SIGCHLD is defined. | ||
| 5 | (init_process): Initialize it. | ||
| 6 | (syms_of_process): Staticpro it. | ||
| 7 | (Fdelete_process): Add pid of the deleted process to it. Check after | ||
| 8 | the addition and before the kill if the process is already stopped, | ||
| 9 | in which case it is deleted from the list and not killed. | ||
| 10 | (sigchld_handler): Define it only if SIGCHLD is. Search the process | ||
| 11 | that signaled Emacs in `deleted_pid_list' before `Vprocess_alist'. | ||
| 12 | Original idea by Stefan Monnier. | ||
| 13 | |||
| 1 | 2006-06-01 Kim F. Storm <storm@cua.dk> | 14 | 2006-06-01 Kim F. Storm <storm@cua.dk> |
| 2 | 15 | ||
| 3 | * dispnew.c (sit_for): Perform redisplay even if input is pending | 16 | * dispnew.c (sit_for): Perform redisplay even if input is pending |