annotate src/syswait.h @ 35453:26726eff41ca zsh-sync-ognus-2

2001-01-21 ShengHuo ZHU <zsh@cs.rochester.edu> * message.el (message-forward): Use mule4. * mm-util.el (mm-string-as-unibyte): New. * message.el (message-forward): Use it. * message.el (message-cite-original-without-signature): Don't peel off the blank line. (message-get-reply-headers): Add Cc if it is not in follow-to. * message.el (message-send-mail): Content-Type may not be there. By Alberto Lusiani. * gnus-art.el (article-display-x-face): Insert X-Face if there is not. * rfc2047.el (rfc2047-fold-region): Don't insert LWSP if there is one. * gnus-win.el (gnus-configure-windows): switch-to-buffer in XEmacs. (gnus-remove-some-windows): Ditto. * mm-decode.el (mm-interactively-view-part): Don't copy-sequence handle. * gnus-art.el (gnus-mime-view-part): Copy it. (gnus-mime-view-part-as-type): Add into gnus-article-mime-handles. * nnmail.el (nnmail-get-new-mail): Find group only if file is not orig-file. Use ',source. * nnslashdot.el (nnslashdot-request-list): Get the right year. By Lars Magne Ingebrigtsen. * pop3.el (pop3-get-message-count): Andrew Innes <andrewi@gnu.org>'s patch of 1999-12-01 was not fully committed.
author ShengHuo ZHU <zsh@cs.rochester.edu>
date Sun, 21 Jan 2001 05:33:42 +0000
parents d57d77adc6da
children f1b3a7278c62
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.
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
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 This file is part of GNU Emacs.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 any later version.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 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
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 GNU General Public License for more details.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 /* Define the structure that the wait system call stores.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 On many systems, there is a structure defined for this.
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 But on vanilla-ish USG systems there is not. */
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
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
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
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
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
37 /* Old code included a comment that HPUX version 7 has broken
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
38 definitions of some of the macros and `the convex' does too.
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
39 HAVE_SYS_WAIT_H probably won't be defined on them if they still get
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
40 used, but for safety... -- fx */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
41 #if (defined (HPUX) && !defined (HPUX8)) || defined (convex)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
42 #undef HAVE_SYS_WAIT_H
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
43 #endif
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
44
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
45 #if defined HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
46 definitions. */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
47
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 #include <sys/wait.h>
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
49 #ifndef WCOREDUMP /* not POSIX */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
50 #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
51 #endif
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
52
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
53 #else /* !HAVE_SYS_WAIT_H */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
54
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
55 /* Note that sys/wait.h may still be included by stdlib.h or something
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
56 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
57
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
58 #undef WEXITSTATUS
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
59 #define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
60 #undef WIFEXITED
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
61 #define WIFEXITED(status) (WTERMSIG(status) == 0)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
62 #undef WIFSTOPPED
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
63 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
64 #undef WIFSIGNALED
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
65 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status))
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
66 #undef WSTOPSIG
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
67 #define WSTOPSIG(status) WEXITSTATUS(status)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
68 #undef WTERMSIG
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
69 #define WTERMSIG(status) ((status) & 0x7f)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
70 #undef WCOREDUMP
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
71 #define WCOREDUMP(status) ((status) & 0x80)
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
72 #endif /* HAVE_SYS_WAIT_H */
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
73
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
74 #undef WAITTYPE
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
75 #define WAITTYPE int
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
76 #undef WRETCODE
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
77 #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
78
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
79 #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
80
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 #ifndef WAITTYPE
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
82
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
83 #ifdef WAIT_USE_INT
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
84 /* 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
85 int regardless of that. */
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
86 #include <sys/wait.h>
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
87 #define WAITTYPE int
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
88 #define WRETCODE(w) WEXITSTATUS (w)
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
89
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
90 #else /* not WAIT_USE_INT */
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
91
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 15000
diff changeset
92 #if (!defined (BSD_SYSTEM) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER))
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 #define WAITTYPE int
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94 #define WIFSTOPPED(w) ((w&0377) == 0177)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 #define WIFEXITED(w) ((w&0377) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 #define WRETCODE(w) (w >> 8)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 #define WSTOPSIG(w) (w >> 8)
30465
d57d77adc6da Move some definitions.
Dave Love <fx@gnu.org>
parents: 30066
diff changeset
99 #define WTERMSIG(w) (w & 0177)
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 #ifndef WCOREDUMP
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 #define WCOREDUMP(w) ((w&0200) != 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102 #endif
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
103
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 #else
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
105
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106 #ifdef BSD4_1
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 #include <wait.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108 #else
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 #include <sys/wait.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 #endif /* not BSD 4.1 */
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 #define WAITTYPE union wait
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 #define WRETCODE(w) w.w_retcode
6015
1a2b17eab8d9 [BSD]: #undef WCOREDUMP before defining it.
Roland McGrath <roland@gnu.org>
parents: 4955
diff changeset
114 #undef WCOREDUMP /* Later BSDs define this name differently. */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 #define WCOREDUMP(w) w.w_coredump
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
117 #if defined (HPUX) || defined (convex)
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 /* HPUX version 7 has broken definitions of these. */
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
119 /* pvogel@convex.com says the convex does too. */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 #undef WTERMSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 #undef WSTOPSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 #undef WIFSTOPPED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 #undef WIFSIGNALED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 #undef WIFEXITED
4955
2da352ce967d Treat convex like hpux.
Richard M. Stallman <rms@gnu.org>
parents: 4626
diff changeset
125 #endif /* HPUX | convex */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 #ifndef WTERMSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 #define WTERMSIG(w) w.w_termsig
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 #ifndef WSTOPSIG
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 #define WSTOPSIG(w) w.w_stopsig
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 #ifndef WIFSTOPPED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134 #define WIFSTOPPED(w) (WTERMSIG (w) == 0177)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 #ifndef WIFSIGNALED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 #define WIFSIGNALED(w) (WTERMSIG (w) != 0177 && (WSTOPSIG (w)) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 #endif
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 #ifndef WIFEXITED
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140 #define WIFEXITED(w) (WTERMSIG (w) == 0)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 #endif
16220
02044b05d8e0 Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents: 15000
diff changeset
142 #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
143 #endif /* not WAIT_USE_INT */
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 #endif /* no WAITTYPE */
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
145
30066
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
146 #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
147
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 #else /* VMS */
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
149
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 #define WAITTYPE int
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 #define WIFSTOPPED(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 #define WIFSIGNALED(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 #define WIFEXITED(w) ((w) != -1)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 #define WRETCODE(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 #define WSTOPSIG(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 #define WCOREDUMP(w) 0
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 #define WTERMSIG(w) (w)
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 #include <ssdef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 #include <iodef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 #include <clidef.h>
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 #include "vmsproc.h"
10773
d8bc42dd7235 New alternative specified by WAIT_USE_INT.
Richard M. Stallman <rms@gnu.org>
parents: 10715
diff changeset
162
4626
c5bbe7c3cfe3 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 #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
164
0c8b413f3f35 Use the autoconf recommended approach. Old code #if'd out in case we
Dave Love <fx@gnu.org>
parents: 16220
diff changeset
165 #endif /* EMACS_SYSWAIT_H */