Mercurial > emacs
annotate src/syswait.h @ 11047:a6e2398557f6
Initial revision
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 17 Mar 1995 00:46:57 +0000 |
parents | d8bc42dd7235 |
children | e6bdaaa6ce1b |
rev | line source |
---|---|
4626 | 1 /* Define wait system call interface for Emacs. |
6015
1a2b17eab8d9
[BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents:
4955
diff
changeset
|
2 Copyright (C) 1993, 1994 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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 /* Define the structure that the wait system call stores. | |
21 On many systems, there is a structure defined for this. | |
22 But on vanilla-ish USG systems there is not. */ | |
23 | |
24 #ifndef VMS | |
25 #ifndef WAITTYPE | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
26 |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
27 #ifdef WAIT_USE_INT |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
28 /* 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
|
29 int regardless of that. */ |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
30 #include <sys/wait.h> |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
31 #define WAITTYPE int |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
32 #define WRETCODE(w) WEXITSTATUS (w) |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
33 |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
34 #else /* not WAIT_USE_INT */ |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
35 |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
36 #if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX) |
4626 | 37 #define WAITTYPE int |
38 #define WIFSTOPPED(w) ((w&0377) == 0177) | |
39 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | |
40 #define WIFEXITED(w) ((w&0377) == 0) | |
41 #define WRETCODE(w) (w >> 8) | |
42 #define WSTOPSIG(w) (w >> 8) | |
43 #define WTERMSIG(w) (w & 0377) | |
44 #ifndef WCOREDUMP | |
45 #define WCOREDUMP(w) ((w&0200) != 0) | |
46 #endif | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
47 |
4626 | 48 #else |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
49 |
4626 | 50 #ifdef BSD4_1 |
51 #include <wait.h> | |
52 #else | |
53 #include <sys/wait.h> | |
54 #endif /* not BSD 4.1 */ | |
55 | |
56 #define WAITTYPE union wait | |
57 #define WRETCODE(w) w.w_retcode | |
6015
1a2b17eab8d9
[BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents:
4955
diff
changeset
|
58 #undef WCOREDUMP /* Later BSDs define this name differently. */ |
4626 | 59 #define WCOREDUMP(w) w.w_coredump |
60 | |
4955 | 61 #if defined (HPUX) || defined (convex) |
4626 | 62 /* HPUX version 7 has broken definitions of these. */ |
4955 | 63 /* pvogel@convex.com says the convex does too. */ |
4626 | 64 #undef WTERMSIG |
65 #undef WSTOPSIG | |
66 #undef WIFSTOPPED | |
67 #undef WIFSIGNALED | |
68 #undef WIFEXITED | |
4955 | 69 #endif /* HPUX | convex */ |
4626 | 70 |
71 #ifndef WTERMSIG | |
72 #define WTERMSIG(w) w.w_termsig | |
73 #endif | |
74 #ifndef WSTOPSIG | |
75 #define WSTOPSIG(w) w.w_stopsig | |
76 #endif | |
77 #ifndef WIFSTOPPED | |
78 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177) | |
79 #endif | |
80 #ifndef WIFSIGNALED | |
81 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0) | |
82 #endif | |
83 #ifndef WIFEXITED | |
84 #define WIFEXITED(w) (WTERMSIG (w) == 0) | |
85 #endif | |
86 #endif /* BSD or UNIPLUS or STRIDE */ | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
87 #endif /* not WAIT_USE_INT */ |
4626 | 88 #endif /* no WAITTYPE */ |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
89 |
4626 | 90 #else /* VMS */ |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
91 |
4626 | 92 #define WAITTYPE int |
93 #define WIFSTOPPED(w) 0 | |
94 #define WIFSIGNALED(w) 0 | |
95 #define WIFEXITED(w) ((w) != -1) | |
96 #define WRETCODE(w) (w) | |
97 #define WSTOPSIG(w) (w) | |
98 #define WCOREDUMP(w) 0 | |
99 #define WTERMSIG(w) (w) | |
100 #include <ssdef.h> | |
101 #include <iodef.h> | |
102 #include <clidef.h> | |
103 #include "vmsproc.h" | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
104 |
4626 | 105 #endif /* VMS */ |