# HG changeset patch # User Jim Blandy # Date 717249119 0 # Node ID af619d68a576eac202f9cf326a850619e34d6658 # Parent de54d705652f5a3014b42c823511ae92287c590b * process.c [SIGCHLD && !BSD && !UNIPLUS && !HPUX] (create_process): #if 0 out the code which sets the child's handler for SIGCHLD to sigchld; the code which gives sigchld its value has been diked out under these CPP symbols, so this should be diked out too. diff -r de54d705652f -r af619d68a576 src/process.c --- a/src/process.c Wed Sep 23 10:33:26 1992 +0000 +++ b/src/process.c Wed Sep 23 11:51:59 1992 +0000 @@ -1274,7 +1274,9 @@ #if defined (BSD) || defined (UNIPLUS) || defined (HPUX) sigsetmask (SIGEMPTYMASK); #else /* ordinary USG */ +#if 0 signal (SIGCHLD, sigchld); +#endif #endif /* ordinary USG */ #endif /* not BSD4_1 */ #endif /* SIGCHLD */