*** empty log message ***
[bpt/emacs.git] / src / syswait.h
CommitLineData
43626ea4 1/* Define wait system call interface for Emacs.
d72c1cad 2 Copyright (C) 1993, 1994, 1995, 2000 Free Software Foundation, Inc.
43626ea4
RS
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
43626ea4
RS
20
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. */
24
d72c1cad
DL
25#ifndef EMACS_SYSWAIT_H
26#define EMACS_SYSWAIT_H
27
43626ea4 28#ifndef VMS
d72c1cad
DL
29
30/* Try the approach recommended by autoconf. If this doesn't cause
31 trouble anywhere, remove the original code, which is #if'd out
32 below. */
33
34#if 1
d72c1cad 35#include <sys/types.h>
1f0bb0ab
DL
36
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
43#endif
44
45#if defined HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid
46 definitions. */
47
d72c1cad 48#include <sys/wait.h>
1f0bb0ab
DL
49#ifndef WCOREDUMP /* not POSIX */
50#define WCOREDUMP(status) ((status) & 0x80)
d72c1cad
DL
51#endif
52
1f0bb0ab
DL
53#else /* !HAVE_SYS_WAIT_H */
54
55/* Note that sys/wait.h may still be included by stdlib.h or something
56 according to XPG. */
57
58#undef WEXITSTATUS
59#define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
60#undef WIFEXITED
61#define WIFEXITED(status) (WTERMSIG(status) == 0)
d72c1cad 62#undef WIFSTOPPED
1f0bb0ab 63#define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
d72c1cad 64#undef WIFSIGNALED
1f0bb0ab
DL
65#define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
66#undef WSTOPSIG
67#define WSTOPSIG(status) WEXITSTATUS(status)
68#undef WTERMSIG
69#define WTERMSIG(status) ((status) & 0x7f)
70#undef WCOREDUMP
71#define WCOREDUMP(status) ((status) & 0x80)
72#endif /* HAVE_SYS_WAIT_H */
d72c1cad 73
1f0bb0ab
DL
74#undef WAITTYPE
75#define WAITTYPE int
76#undef WRETCODE
77#define WRETCODE(status) WEXITSTATUS (status)
d72c1cad
DL
78
79#else /* !1 */
80
43626ea4 81#ifndef WAITTYPE
da149a8f
RS
82
83#ifdef WAIT_USE_INT
84/* Some systems have union wait in their header, but we should use
85 int regardless of that. */
86#include <sys/wait.h>
87#define WAITTYPE int
88#define WRETCODE(w) WEXITSTATUS (w)
89
90#else /* not WAIT_USE_INT */
91
6df54671 92#if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
43626ea4
RS
93#define WAITTYPE int
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)
1f0bb0ab 99#define WTERMSIG(w) (w & 0177)
43626ea4
RS
100#ifndef WCOREDUMP
101#define WCOREDUMP(w) ((w&0200) != 0)
102#endif
da149a8f 103
43626ea4 104#else
da149a8f 105
43626ea4
RS
106#ifdef BSD4_1
107#include <wait.h>
108#else
109#include <sys/wait.h>
110#endif /* not BSD 4.1 */
111
112#define WAITTYPE union wait
113#define WRETCODE(w) w.w_retcode
4f480b74 114#undef WCOREDUMP /* Later BSDs define this name differently. */
43626ea4
RS
115#define WCOREDUMP(w) w.w_coredump
116
b01b093a 117#if defined (HPUX) || defined (convex)
43626ea4 118/* HPUX version 7 has broken definitions of these. */
b01b093a 119/* pvogel@convex.com says the convex does too. */
43626ea4
RS
120#undef WTERMSIG
121#undef WSTOPSIG
122#undef WIFSTOPPED
123#undef WIFSIGNALED
124#undef WIFEXITED
b01b093a 125#endif /* HPUX | convex */
43626ea4
RS
126
127#ifndef WTERMSIG
128#define WTERMSIG(w) w.w_termsig
129#endif
130#ifndef WSTOPSIG
131#define WSTOPSIG(w) w.w_stopsig
132#endif
133#ifndef WIFSTOPPED
134#define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
135#endif
136#ifndef WIFSIGNALED
137#define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
138#endif
139#ifndef WIFEXITED
140#define WIFEXITED(w) (WTERMSIG (w) == 0)
141#endif
6df54671 142#endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */
da149a8f 143#endif /* not WAIT_USE_INT */
43626ea4 144#endif /* no WAITTYPE */
da149a8f 145
d72c1cad
DL
146#endif /* 1 */
147
43626ea4 148#else /* VMS */
da149a8f 149
43626ea4
RS
150#define WAITTYPE int
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)
158#include <ssdef.h>
159#include <iodef.h>
160#include <clidef.h>
161#include "vmsproc.h"
da149a8f 162
43626ea4 163#endif /* VMS */
d72c1cad
DL
164
165#endif /* EMACS_SYSWAIT_H */