Mercurial > emacs
annotate src/syswait.h @ 41182:db856db0784c
*** empty log message ***
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Sat, 17 Nov 2001 01:25:10 +0000 |
| parents | f1b3a7278c62 |
| children | d12c8d3334f4 |
| rev | line source |
|---|---|
| 4626 | 1 /* Define wait system call interface for Emacs. |
|
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
2 Copyright (C) 1993, 1994, 1995, 2000 Free Software Foundation, Inc. |
| 4626 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 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) | |
| 9 any later version. | |
| 10 | |
| 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. | |
| 15 | |
| 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 | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11235
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
11235
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
| 4626 | 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 | |
|
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
25 #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
|
26 #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
|
27 |
| 4626 | 28 #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
|
29 |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
30 /* Try the approach recommended by autoconf. If this doesn't cause |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
31 trouble anywhere, remove the original code, which is #if'd out |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
32 below. */ |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
33 |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
34 #if 1 |
| 30465 | 35 #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
|
36 |
| 30465 | 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 */ | |
|
41138
f1b3a7278c62
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Eli Zaretskii <eliz@gnu.org>
parents:
30465
diff
changeset
|
41 /* ISC 4.1 doesn't have wait3, but does have sys/wait.h. */ |
|
f1b3a7278c62
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Eli Zaretskii <eliz@gnu.org>
parents:
30465
diff
changeset
|
42 #if (defined(HPUX) && !defined(HPUX8)) || defined(convex) || defined(ISC4_1) |
| 30465 | 43 #undef HAVE_SYS_WAIT_H |
| 44 #endif | |
| 45 | |
| 46 #if defined HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid | |
| 47 definitions. */ | |
| 48 | |
|
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
49 #include <sys/wait.h> |
| 30465 | 50 #ifndef WCOREDUMP /* not POSIX */ |
| 51 #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
|
52 #endif |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
53 |
| 30465 | 54 #else /* !HAVE_SYS_WAIT_H */ |
| 55 | |
| 56 /* Note that sys/wait.h may still be included by stdlib.h or something | |
| 57 according to XPG. */ | |
|
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
58 |
| 30465 | 59 #undef WEXITSTATUS |
| 60 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8) | |
| 61 #undef WIFEXITED | |
| 62 #define WIFEXITED(status) (WTERMSIG(status) == 0) | |
| 63 #undef WIFSTOPPED | |
| 64 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) | |
| 65 #undef WIFSIGNALED | |
| 66 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status)) | |
| 67 #undef WSTOPSIG | |
| 68 #define WSTOPSIG(status) WEXITSTATUS(status) | |
| 69 #undef WTERMSIG | |
| 70 #define WTERMSIG(status) ((status) & 0x7f) | |
| 71 #undef WCOREDUMP | |
| 72 #define WCOREDUMP(status) ((status) & 0x80) | |
| 73 #endif /* HAVE_SYS_WAIT_H */ | |
| 74 | |
| 75 #undef WAITTYPE | |
| 76 #define WAITTYPE int | |
| 77 #undef WRETCODE | |
| 78 #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
|
79 |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
80 #else /* !1 */ |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
81 |
| 4626 | 82 #ifndef WAITTYPE |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
83 |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
84 #ifdef WAIT_USE_INT |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
85 /* 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
|
86 int regardless of that. */ |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
87 #include <sys/wait.h> |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
88 #define WAITTYPE int |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
89 #define WRETCODE(w) WEXITSTATUS (w) |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
90 |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
91 #else /* not WAIT_USE_INT */ |
|
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
92 |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15000
diff
changeset
|
93 #if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) |
| 4626 | 94 #define WAITTYPE int |
| 95 #define WIFSTOPPED(w) ((w&0377) == 0177) | |
| 96 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | |
| 97 #define WIFEXITED(w) ((w&0377) == 0) | |
| 98 #define WRETCODE(w) (w >> 8) | |
| 99 #define WSTOPSIG(w) (w >> 8) | |
| 30465 | 100 #define WTERMSIG(w) (w & 0177) |
| 4626 | 101 #ifndef WCOREDUMP |
| 102 #define WCOREDUMP(w) ((w&0200) != 0) | |
| 103 #endif | |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
104 |
| 4626 | 105 #else |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
106 |
| 4626 | 107 #ifdef BSD4_1 |
| 108 #include <wait.h> | |
| 109 #else | |
| 110 #include <sys/wait.h> | |
| 111 #endif /* not BSD 4.1 */ | |
| 112 | |
| 113 #define WAITTYPE union wait | |
| 114 #define WRETCODE(w) w.w_retcode | |
|
6015
1a2b17eab8d9
[BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents:
4955
diff
changeset
|
115 #undef WCOREDUMP /* Later BSDs define this name differently. */ |
| 4626 | 116 #define WCOREDUMP(w) w.w_coredump |
| 117 | |
| 4955 | 118 #if defined (HPUX) || defined (convex) |
| 4626 | 119 /* HPUX version 7 has broken definitions of these. */ |
| 4955 | 120 /* pvogel@convex.com says the convex does too. */ |
| 4626 | 121 #undef WTERMSIG |
| 122 #undef WSTOPSIG | |
| 123 #undef WIFSTOPPED | |
| 124 #undef WIFSIGNALED | |
| 125 #undef WIFEXITED | |
| 4955 | 126 #endif /* HPUX | convex */ |
| 4626 | 127 |
| 128 #ifndef WTERMSIG | |
| 129 #define WTERMSIG(w) w.w_termsig | |
| 130 #endif | |
| 131 #ifndef WSTOPSIG | |
| 132 #define WSTOPSIG(w) w.w_stopsig | |
| 133 #endif | |
| 134 #ifndef WIFSTOPPED | |
| 135 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177) | |
| 136 #endif | |
| 137 #ifndef WIFSIGNALED | |
| 138 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0) | |
| 139 #endif | |
| 140 #ifndef WIFEXITED | |
| 141 #define WIFEXITED(w) (WTERMSIG (w) == 0) | |
| 142 #endif | |
|
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15000
diff
changeset
|
143 #endif /* BSD_SYSTEM || UNIPLUS || STRIDE || HPUX */ |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
144 #endif /* not WAIT_USE_INT */ |
| 4626 | 145 #endif /* no WAITTYPE */ |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
146 |
|
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
147 #endif /* 1 */ |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
148 |
| 4626 | 149 #else /* VMS */ |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
150 |
| 4626 | 151 #define WAITTYPE int |
| 152 #define WIFSTOPPED(w) 0 | |
| 153 #define WIFSIGNALED(w) 0 | |
| 154 #define WIFEXITED(w) ((w) != -1) | |
| 155 #define WRETCODE(w) (w) | |
| 156 #define WSTOPSIG(w) (w) | |
| 157 #define WCOREDUMP(w) 0 | |
| 158 #define WTERMSIG(w) (w) | |
| 159 #include <ssdef.h> | |
| 160 #include <iodef.h> | |
| 161 #include <clidef.h> | |
| 162 #include "vmsproc.h" | |
|
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
163 |
| 4626 | 164 #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
|
165 |
|
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
166 #endif /* EMACS_SYSWAIT_H */ |
