annotate src/syswait.h @ 94994:29adfc9354e7

Switch to recommended form of GPLv3 permissions notice.
author Glenn Morris <rgm@gnu.org>
date Thu, 15 May 2008 03:25:15 +0000
parents 91da483b3fa5
children ddedcecb18ef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 /* Define wait system call interface for Emacs.
75227
e90d04cd455a Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents: 68651
diff changeset
2 Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004,
79759
fc2bcd2a8aad Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78260
diff changeset
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 This file is part of GNU Emacs.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87730
diff changeset
7 GNU Emacs is free software: you can redistribute it and/or modify
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87730
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87730
diff changeset
10 (at your option) any later version.
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 GNU General Public License for more details.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
94994
29adfc9354e7 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 87730
diff changeset
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 /* Define the structure that the wait system call stores.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 On many systems, there is a structure defined for this.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 But on vanilla-ish USG systems there is not. */
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
24 #ifndef EMACS_SYSWAIT_H
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
25 #define EMACS_SYSWAIT_H
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
26
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 #ifndef VMS
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
28
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
29 /* This is now really the approach recommended by Autoconf. If this
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
30 doesn't cause trouble anywhere, remove the original code, which is
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
31 #if'd out below. */
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
32
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
33 #if 1
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
34 #include <sys/types.h>
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
35
41185
d12c8d3334f4 Delete conditionals for HPUX7, ISC 4.1, and convex.
Richard M. Stallman <rms@gnu.org>
parents: 41138
diff changeset
36 #ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
37 #include <sys/wait.h>
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
38 #endif /* !HAVE_SYS_WAIT_H */
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
39
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
40 #ifndef WCOREDUMP /* not POSIX */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
41 #define WCOREDUMP(status) ((status) & 0x80)
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
42 #endif
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
43 #ifndef WEXITSTATUS
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
44 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
45 #endif
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
46 #ifndef WIFEXITED
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
47 #define WIFEXITED(status) (WTERMSIG(status) == 0)
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
48 #endif
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
49 #ifndef WIFSTOPPED
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
50 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
51 #endif
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
52 #ifndef WIFSIGNALED
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
53 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
54 #endif
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
55 #ifndef WSTOPSIG
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
56 #define WSTOPSIG(status) WEXITSTATUS(status)
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
57 #endif
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
58 #ifndef WTERMSIG
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
59 #define WTERMSIG(status) ((status) & 0x7f)
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
60 #endif
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
61
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
62 #undef WAITTYPE
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
63 #define WAITTYPE int
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
64 #undef WRETCODE
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
65 #define WRETCODE(status) WEXITSTATUS (status)
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
66
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
67 #else /* 0 */
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
68
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 #ifndef WAITTYPE
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
70
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
71 #ifdef WAIT_USE_INT
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
72 /* Some systems have union wait in their header, but we should use
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
73 int regardless of that. */
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
74 #include <sys/wait.h>
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
75 #define WAITTYPE int
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
76 #define WRETCODE(w) WEXITSTATUS (w)
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
77
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
78 #else /* not WAIT_USE_INT */
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
79
87730
91da483b3fa5 * movemail.c:
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79759
diff changeset
80 #if (!defined (BSD_SYSTEM) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 #define WAITTYPE int
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 #define WIFSTOPPED(w) ((w&0377) == 0177)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 #define WIFEXITED(w) ((w&0377) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 #define WRETCODE(w) (w >> 8)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 #define WSTOPSIG(w) (w >> 8)
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
87 #define WTERMSIG(w) (w & 0177)
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 #ifndef WCOREDUMP
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 #define WCOREDUMP(w) ((w&0200) != 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 #endif
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
91
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46865
diff changeset
92 #else
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
93
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 #ifdef BSD4_1
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 #include <wait.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 #else
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 #include <sys/wait.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 #endif /* not BSD 4.1 */
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 #define WAITTYPE union wait
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 #define WRETCODE(w) w.w_retcode
6015
1a2b17eab8d9 [BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents: 4955
diff changeset
102 #undef WCOREDUMP /* Later BSDs define this name differently. */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 #define WCOREDUMP(w) w.w_coredump
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
105 #if defined (HPUX) || defined (convex)
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 /* HPUX version 7 has broken definitions of these. */
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
107 /* pvogel@convex.com says the convex does too. */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 #undef WTERMSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 #undef WSTOPSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 #undef WIFSTOPPED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 #undef WIFSIGNALED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 #undef WIFEXITED
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
113 #endif /* HPUX | convex */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 #ifndef WTERMSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 #define WTERMSIG(w) w.w_termsig
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 #ifndef WSTOPSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 #define WSTOPSIG(w) w.w_stopsig
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 #ifndef WIFSTOPPED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 #ifndef WIFSIGNALED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 #ifndef WIFEXITED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 #define WIFEXITED(w) (WTERMSIG (w) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 #endif
87730
91da483b3fa5 * movemail.c:
Dan Nicolaescu <dann@ics.uci.edu>
parents: 79759
diff changeset
130 #endif /* BSD_SYSTEM || HPUX */
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
131 #endif /* not WAIT_USE_INT */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 #endif /* no WAITTYPE */
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
133
46865
971ae7795f13 Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
Richard M. Stallman <rms@gnu.org>
parents: 41185
diff changeset
134 #endif /* 0 */
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
135
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 #else /* VMS */
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
137
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 #define WAITTYPE int
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 #define WIFSTOPPED(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 #define WIFSIGNALED(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 #define WIFEXITED(w) ((w) != -1)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 #define WRETCODE(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 #define WSTOPSIG(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 #define WCOREDUMP(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 #define WTERMSIG(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 #include <ssdef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 #include <iodef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 #include <clidef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 #include "vmsproc.h"
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
150
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 #endif /* VMS */
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
152
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
153 #endif /* EMACS_SYSWAIT_H */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
154
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
155 /* arch-tag: 7e5d9719-ec66-4b6f-89bb-563eea16a899
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49600
diff changeset
156 (do not change this comment) */