changeset 3334:7900edb84c4f

(wait_for_termination): Delete LINUX conditionals.
author Richard M. Stallman <rms@gnu.org>
date Mon, 31 May 1993 01:12:05 +0000
parents 962106f58afe
children 580d53a2e450
files src/sysdep.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Mon May 31 00:08:24 1993 +0000
+++ b/src/sysdep.c	Mon May 31 01:12:05 1993 +0000
@@ -314,7 +314,7 @@
       status = SYS$FORCEX (&pid, 0, 0);
       break;
 #else /* not VMS */
-#if (defined (BSD) && !defined (LINUX)) || (defined (HPUX) && !defined (HPUX_5))
+#if defined (BSD) || (defined (HPUX) && !defined (HPUX_5))
       /* Note that kill returns -1 even if the process is just a zombie now.
 	 But inevitably a SIGCHLD interrupt should be generated
 	 and child_sig will do wait3 and make the process go away. */
@@ -333,12 +333,12 @@
 	sleep (1);
       else
 	sigpause (SIGEMPTYMASK);
-#else /* not BSD, not LINUX, and not HPUX version >= 6 */
-#if defined (UNIPLUS) || defined (LINUX)
+#else /* not BSD, and not HPUX version >= 6 */
+#if defined (UNIPLUS)
       if (0 > kill (pid, 0))
 	break;
       wait (0);
-#else /* neither BSD nor UNIPLUS nor LINUX: random sysV */
+#else /* neither BSD nor UNIPLUS: random sysV */
 #ifdef POSIX_SIGNALS	/* would this work for LINUX as well? */
       sigblock (sigmask (SIGCHLD));
       if (0 > kill (pid, 0))