diff options
| author | Jan Djärv | 2004-01-27 21:34:43 +0000 |
|---|---|---|
| committer | Jan Djärv | 2004-01-27 21:34:43 +0000 |
| commit | ce38070aa21d6d1e4853e022bdedca7e3d7a99b8 (patch) | |
| tree | 5bb5c0d639c7522d754e539c7e7d328062772276 /src | |
| parent | f5ea26f8ec93457d25c7ebf4cb7b1d2baf00d7f5 (diff) | |
| download | emacs-ce38070aa21d6d1e4853e022bdedca7e3d7a99b8.tar.gz emacs-ce38070aa21d6d1e4853e022bdedca7e3d7a99b8.zip | |
* process.c (sigchld_handler): Add comment about not calling malloc
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/process.c | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4592da888a7..e4f53a22ee8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2004-01-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 1 | 2004-01-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 2 | ||
| 3 | * process.c (sigchld_handler): Add comment about not calling malloc. | ||
| 4 | |||
| 3 | * process.h: Add extern to synch_process_termsig. | 5 | * process.h: Add extern to synch_process_termsig. |
| 4 | 6 | ||
| 5 | 2004-01-27 Steven Tamm <steventamm@mac.com> | 7 | 2004-01-27 Steven Tamm <steventamm@mac.com> |
diff --git a/src/process.c b/src/process.c index 83f6df2d237..52d9bf3fff5 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -6094,7 +6094,10 @@ kill_buffer_processes (buffer) | |||
| 6094 | queued and the signal-catching function will be continually | 6094 | queued and the signal-catching function will be continually |
| 6095 | reentered until the queue is empty". Invoking signal() causes the | 6095 | reentered until the queue is empty". Invoking signal() causes the |
| 6096 | kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems | 6096 | kernel to reexamine the SIGCLD queue. Fred Fish, UniSoft Systems |
| 6097 | Inc. */ | 6097 | Inc. |
| 6098 | |||
| 6099 | ** Malloc WARNING: This should never call malloc either directly or | ||
| 6100 | indirectly; if it does, that is a bug */ | ||
| 6098 | 6101 | ||
| 6099 | SIGTYPE | 6102 | SIGTYPE |
| 6100 | sigchld_handler (signo) | 6103 | sigchld_handler (signo) |