From ad4bf9a06194135d938ae4aedd2daa7b16819eeb Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 16 Jul 1996 22:33:09 +0000 Subject: [PATCH] (create_process_1, sigchld_handler): Undo previous change. --- src/process.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/process.c b/src/process.c index ef00094401c..a527066277b 100644 --- a/src/process.c +++ b/src/process.c @@ -1167,7 +1167,7 @@ SIGTYPE create_process_1 (signo) int signo; { -#if defined(USG) && !defined(POSIX_SIGNALS) +#ifdef USG /* USG systems forget handlers when they are used; must reestablish each time */ signal (signo, create_process_1); @@ -3352,7 +3352,7 @@ sigchld_handler (signo) /* USG systems forget handlers when they are used; must reestablish each time */ -#if defined(USG) && !defined(POSIX_SIGNALS) +#ifdef USG signal (signo, sigchld_handler); /* WARNING - must come after wait3() */ #endif #ifdef BSD4_1 @@ -3460,7 +3460,7 @@ sigchld_handler (signo) Otherwise (on systems that have WNOHANG), loop around to use up all the processes that have something to tell us. */ #if defined (USG) && ! (defined (HPUX) && defined (WNOHANG)) || defined (WINDOWSNT) -# if defined (USG) && ! defined(POSIX_SIGNALS) +#ifdef USG signal (signo, sigchld_handler); #endif errno = old_errno; -- 2.39.5