1 /* Define wait system call interface for Emacs.
2 Copyright (C) 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Define the structure that the wait system call stores.
22 On many systems, there is a structure defined for this.
23 But on vanilla-ish USG systems there is not. */
25 #ifndef EMACS_SYSWAIT_H
26 #define EMACS_SYSWAIT_H
30 /* Try the approach recommended by autoconf. If this doesn't cause
31 trouble anywhere, remove the original code, which is #if'd out
35 #include <sys/types.h>
37 /* Old code included a comment that HPUX version 7 has broken
38 definitions of some of the macros and `the convex' does too.
39 HAVE_SYS_WAIT_H probably won't be defined on them if they still get
40 used, but for safety... -- fx */
41 #if (defined (HPUX) && !defined (HPUX8)) || defined (convex)
42 #undef HAVE_SYS_WAIT_H
45 #if defined HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid
49 #ifndef WCOREDUMP /* not POSIX */
50 #define WCOREDUMP(status) ((status) & 0x80)
53 #else /* !HAVE_SYS_WAIT_H */
55 /* Note that sys/wait.h may still be included by stdlib.h or something
59 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
61 #define WIFEXITED(status) (WTERMSIG(status) == 0)
63 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
65 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
67 #define WSTOPSIG(status) WEXITSTATUS(status)
69 #define WTERMSIG(status) ((status) & 0x7f)
71 #define WCOREDUMP(status) ((status) & 0x80)
72 #endif /* HAVE_SYS_WAIT_H */
77 #define WRETCODE(status) WEXITSTATUS (status)
84 /* Some systems have union wait in their header, but we should use
85 int regardless of that. */
88 #define WRETCODE(w) WEXITSTATUS (w)
90 #else /* not WAIT_USE_INT */
92 #if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
94 #define WIFSTOPPED(w) ((w&0377) == 0177)
95 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
96 #define WIFEXITED(w) ((w&0377) == 0)
97 #define WRETCODE(w) (w >> 8)
98 #define WSTOPSIG(w) (w >> 8)
99 #define WTERMSIG(w) (w & 0177)
101 #define WCOREDUMP(w) ((w&0200) != 0)
109 #include <sys/wait.h>
110 #endif /* not BSD 4.1 */
112 #define WAITTYPE union wait
113 #define WRETCODE(w) w.w_retcode
114 #undef WCOREDUMP /* Later BSDs define this name differently. */
115 #define WCOREDUMP(w) w.w_coredump
117 #if defined (HPUX) || defined (convex)
118 /* HPUX version 7 has broken definitions of these. */
119 /* pvogel@convex.com says the convex does too. */
125 #endif /* HPUX | convex */
128 #define WTERMSIG(w) w.w_termsig
131 #define WSTOPSIG(w) w.w_stopsig
134 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
137 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
140 #define WIFEXITED(w) (WTERMSIG (w) == 0)
142 #endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */
143 #endif /* not WAIT_USE_INT */
144 #endif /* no WAITTYPE */
151 #define WIFSTOPPED(w) 0
152 #define WIFSIGNALED(w) 0
153 #define WIFEXITED(w) ((w) != -1)
154 #define WRETCODE(w) (w)
155 #define WSTOPSIG(w) (w)
156 #define WCOREDUMP(w) 0
157 #define WTERMSIG(w) (w)
165 #endif /* EMACS_SYSWAIT_H */