summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-01-22 22:31:27 +0000
committerRoland McGrath <roland@redhat.com>1993-01-22 22:31:27 +0000
commit6090eb31255b4a2ece7bef3f836aa1b1dd069700 (patch)
tree71f6280146a4577193b0e3f2970e6bfdb6cc43f4 /job.c
parent21c1a556659b34b402a22122367d6836cd31525d (diff)
downloadgunmake-6090eb31255b4a2ece7bef3f836aa1b1dd069700.tar.gz
Formerly job.c.~92~
Diffstat (limited to 'job.c')
-rw-r--r--job.c32
1 files changed, 18 insertions, 14 deletions
diff --git a/job.c b/job.c
index 8f32229..005de3c 100644
--- a/job.c
+++ b/job.c
@@ -41,29 +41,27 @@ char default_shell[] = "/bin/sh";
#endif /* POSIX. */
#endif
-#ifdef HAVE_WAITPID
+#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
+#endif
-#define WAIT_NOHANG(status) waitpid(-1, (status), WNOHANG)
-
+#ifdef HAVE_WAITPID
+#define WAIT_NOHANG(status) waitpid (-1, (status), WNOHANG)
#else /* Don't have waitpid. */
-
-#if defined(HAVE_SYS_WAIT) || !defined(USG)
-#include <sys/wait.h>
-
+#ifdef HAVE_WAIT3
#ifndef wait3
extern int wait3 ();
#endif
-#define WAIT_NOHANG(status) \
- wait3((union wait *) (status), WNOHANG, (struct rusage *) 0)
+#define WAIT_NOHANG(status) wait3 ((status), WNOHANG, (struct rusage *) 0)
+#endif /* Have wait3. */
+#endif /* Have waitpid. */
#if !defined (wait) && !defined (POSIX)
extern int wait ();
#endif
-#endif /* HAVE_SYS_WAIT || !USG */
-#endif /* Have waitpid. */
-#if defined(WTERMSIG) || (defined(USG) && !defined(HAVE_SYS_WAIT))
+#ifndef HAVE_UNION_WAIT
+
#define WAIT_T int
#ifndef WTERMSIG
@@ -82,12 +80,18 @@ extern int wait ();
#define WIFEXITED(x) (WTERMSIG (x) == 0)
#endif
-#else /* WTERMSIG not defined and have <sys/wait.h> or not USG. */
+#else /* Have `union wait'. */
#define WAIT_T union wait
+#ifndef WTERMSIG
#define WTERMSIG(x) ((x).w_termsig)
+#endif
+#ifndef WCOREDUMP
#define WCOREDUMP(x) ((x).w_coredump)
+#endif
+#ifndef WEXITSTATUS
#define WEXITSTATUS(x) ((x).w_retcode)
+#endif
#ifndef WIFSIGNALED
#define WIFSIGNALED(x) (WTERMSIG(x) != 0)
#endif
@@ -95,7 +99,7 @@ extern int wait ();
#define WIFEXITED(x) (WTERMSIG(x) == 0)
#endif
-#endif /* WTERMSIG defined or USG and don't have <sys/wait.h>. */
+#endif /* Don't have `union wait'. */
#ifndef HAVE_UNISTD_H