]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (sigchld_handler): Add comment about not calling malloc
authorJan Djärv <jan.h.d@swipnet.se>
Tue, 27 Jan 2004 21:34:43 +0000 (21:34 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Tue, 27 Jan 2004 21:34:43 +0000 (21:34 +0000)
src/ChangeLog
src/process.c

index 4592da888a71525d66fa25f4bf6a2be20074d86a..e4f53a22ee8f762e05bc42dc4f019aa47ef7b4e4 100644 (file)
@@ -1,5 +1,7 @@
 2004-01-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
+       * process.c (sigchld_handler): Add comment about not calling malloc.
+
        * process.h: Add extern to synch_process_termsig.
 
 2004-01-27  Steven Tamm <steventamm@mac.com>
index 83f6df2d2370c94e815e283274c2b53a8acb88e4..52d9bf3fff5f6c3a727eeed70f4aabae55bf5b28 100644 (file)
@@ -6094,7 +6094,10 @@ kill_buffer_processes (buffer)
    queued and the signal-catching function will be continually
    reentered until the queue is empty".  Invoking signal() causes the
    kernel to reexamine the SIGCLD queue.  Fred Fish, UniSoft Systems
-   Inc. */
+   Inc.
+
+   ** Malloc WARNING: This should never call malloc either directly or
+   indirectly; if it does, that is a bug  */
 
 SIGTYPE
 sigchld_handler (signo)