changeset 3106:a5b3a34ba1e4

(wait_for_termination) [LINUX]: Use the UNIPLUS alternative.
author Richard M. Stallman <rms@gnu.org>
date Tue, 25 May 1993 23:23:53 +0000
parents 852789920c11
children 6c0cce3bc5d5
files src/sysdep.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Tue May 25 23:22:08 1993 +0000
+++ b/src/sysdep.c	Tue May 25 23:23:53 1993 +0000
@@ -334,11 +334,11 @@
       else
 	sigpause (SIGEMPTYMASK);
 #else /* not BSD, not LINUX, and not HPUX version >= 6 */
-#ifdef UNIPLUS
+#if defined (UNIPLUS) || defined (LINUX)
       if (0 > kill (pid, 0))
 	break;
       wait (0);
-#else /* neither BSD nor UNIPLUS: random sysV */
+#else /* neither BSD nor UNIPLUS nor LINUX: random sysV */
 #ifdef HAVE_SYSV_SIGPAUSE
       sighold (SIGCHLD);
       if (0 > kill (pid, 0))