Mercurial > emacs
annotate src/syswait.h @ 42521:72a5aec83cab
Suggest to upgrade ncurses if Emacs aborts inside tparam1.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 04 Jan 2002 10:15:04 +0000 |
parents | d12c8d3334f4 |
children | 971ae7795f13 |
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 |
41185
d12c8d3334f4
Delete conditionals for HPUX7, ISC 4.1, and convex.
Richard M. Stallman <rms@gnu.org>
parents:
41138
diff
changeset
|
37 #ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */ |
30465 | 38 |
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
39 #include <sys/wait.h> |
30465 | 40 #ifndef WCOREDUMP /* not POSIX */ |
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 |
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
43 |
30465 | 44 #else /* !HAVE_SYS_WAIT_H */ |
45 | |
46 /* Note that sys/wait.h may still be included by stdlib.h or something | |
47 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
|
48 |
30465 | 49 #undef WEXITSTATUS |
50 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8) | |
51 #undef WIFEXITED | |
52 #define WIFEXITED(status) (WTERMSIG(status) == 0) | |
53 #undef WIFSTOPPED | |
54 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f) | |
55 #undef WIFSIGNALED | |
56 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status)) | |
57 #undef WSTOPSIG | |
58 #define WSTOPSIG(status) WEXITSTATUS(status) | |
59 #undef WTERMSIG | |
60 #define WTERMSIG(status) ((status) & 0x7f) | |
61 #undef WCOREDUMP | |
62 #define WCOREDUMP(status) ((status) & 0x80) | |
63 #endif /* HAVE_SYS_WAIT_H */ | |
64 | |
65 #undef WAITTYPE | |
66 #define WAITTYPE int | |
67 #undef WRETCODE | |
68 #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
|
69 |
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
70 #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
|
71 |
4626 | 72 #ifndef WAITTYPE |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
73 |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
74 #ifdef WAIT_USE_INT |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
75 /* 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
|
76 int regardless of that. */ |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
77 #include <sys/wait.h> |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
78 #define WAITTYPE int |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
79 #define WRETCODE(w) WEXITSTATUS (w) |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
80 |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
81 #else /* not WAIT_USE_INT */ |
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
82 |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15000
diff
changeset
|
83 #if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) |
4626 | 84 #define WAITTYPE int |
85 #define WIFSTOPPED(w) ((w&0377) == 0177) | |
86 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | |
87 #define WIFEXITED(w) ((w&0377) == 0) | |
88 #define WRETCODE(w) (w >> 8) | |
89 #define WSTOPSIG(w) (w >> 8) | |
30465 | 90 #define WTERMSIG(w) (w & 0177) |
4626 | 91 #ifndef WCOREDUMP |
92 #define WCOREDUMP(w) ((w&0200) != 0) | |
93 #endif | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
94 |
4626 | 95 #else |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
96 |
4626 | 97 #ifdef BSD4_1 |
98 #include <wait.h> | |
99 #else | |
100 #include <sys/wait.h> | |
101 #endif /* not BSD 4.1 */ | |
102 | |
103 #define WAITTYPE union wait | |
104 #define WRETCODE(w) w.w_retcode | |
6015
1a2b17eab8d9
[BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents:
4955
diff
changeset
|
105 #undef WCOREDUMP /* Later BSDs define this name differently. */ |
4626 | 106 #define WCOREDUMP(w) w.w_coredump |
107 | |
4955 | 108 #if defined (HPUX) || defined (convex) |
4626 | 109 /* HPUX version 7 has broken definitions of these. */ |
4955 | 110 /* pvogel@convex.com says the convex does too. */ |
4626 | 111 #undef WTERMSIG |
112 #undef WSTOPSIG | |
113 #undef WIFSTOPPED | |
114 #undef WIFSIGNALED | |
115 #undef WIFEXITED | |
4955 | 116 #endif /* HPUX | convex */ |
4626 | 117 |
118 #ifndef WTERMSIG | |
119 #define WTERMSIG(w) w.w_termsig | |
120 #endif | |
121 #ifndef WSTOPSIG | |
122 #define WSTOPSIG(w) w.w_stopsig | |
123 #endif | |
124 #ifndef WIFSTOPPED | |
125 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177) | |
126 #endif | |
127 #ifndef WIFSIGNALED | |
128 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0) | |
129 #endif | |
130 #ifndef WIFEXITED | |
131 #define WIFEXITED(w) (WTERMSIG (w) == 0) | |
132 #endif | |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15000
diff
changeset
|
133 #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
|
134 #endif /* not WAIT_USE_INT */ |
4626 | 135 #endif /* no WAITTYPE */ |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
136 |
30066
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
137 #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
|
138 |
4626 | 139 #else /* VMS */ |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
140 |
4626 | 141 #define WAITTYPE int |
142 #define WIFSTOPPED(w) 0 | |
143 #define WIFSIGNALED(w) 0 | |
144 #define WIFEXITED(w) ((w) != -1) | |
145 #define WRETCODE(w) (w) | |
146 #define WSTOPSIG(w) (w) | |
147 #define WCOREDUMP(w) 0 | |
148 #define WTERMSIG(w) (w) | |
149 #include <ssdef.h> | |
150 #include <iodef.h> | |
151 #include <clidef.h> | |
152 #include "vmsproc.h" | |
10773
d8bc42dd7235
New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents:
10715
diff
changeset
|
153 |
4626 | 154 #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
|
155 |
0c8b413f3f35
Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents:
16220
diff
changeset
|
156 #endif /* EMACS_SYSWAIT_H */ |