xref: /xnu-8792.81.2/bsd/sys/wait.h (revision 19c3b8c28c31cb8130e034cfb5df6bf9ba342d90)
1*19c3b8c2SApple OSS Distributions /*
2*19c3b8c2SApple OSS Distributions  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3*19c3b8c2SApple OSS Distributions  *
4*19c3b8c2SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*19c3b8c2SApple OSS Distributions  *
6*19c3b8c2SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*19c3b8c2SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*19c3b8c2SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*19c3b8c2SApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*19c3b8c2SApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*19c3b8c2SApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*19c3b8c2SApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*19c3b8c2SApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*19c3b8c2SApple OSS Distributions  *
15*19c3b8c2SApple OSS Distributions  * Please obtain a copy of the License at
16*19c3b8c2SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*19c3b8c2SApple OSS Distributions  *
18*19c3b8c2SApple OSS Distributions  * The Original Code and all software distributed under the License are
19*19c3b8c2SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*19c3b8c2SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*19c3b8c2SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*19c3b8c2SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*19c3b8c2SApple OSS Distributions  * Please see the License for the specific language governing rights and
24*19c3b8c2SApple OSS Distributions  * limitations under the License.
25*19c3b8c2SApple OSS Distributions  *
26*19c3b8c2SApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*19c3b8c2SApple OSS Distributions  */
28*19c3b8c2SApple OSS Distributions /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29*19c3b8c2SApple OSS Distributions /*
30*19c3b8c2SApple OSS Distributions  * Copyright (c) 1982, 1986, 1989, 1993, 1994
31*19c3b8c2SApple OSS Distributions  *	The Regents of the University of California.  All rights reserved.
32*19c3b8c2SApple OSS Distributions  *
33*19c3b8c2SApple OSS Distributions  * Redistribution and use in source and binary forms, with or without
34*19c3b8c2SApple OSS Distributions  * modification, are permitted provided that the following conditions
35*19c3b8c2SApple OSS Distributions  * are met:
36*19c3b8c2SApple OSS Distributions  * 1. Redistributions of source code must retain the above copyright
37*19c3b8c2SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer.
38*19c3b8c2SApple OSS Distributions  * 2. Redistributions in binary form must reproduce the above copyright
39*19c3b8c2SApple OSS Distributions  *    notice, this list of conditions and the following disclaimer in the
40*19c3b8c2SApple OSS Distributions  *    documentation and/or other materials provided with the distribution.
41*19c3b8c2SApple OSS Distributions  * 3. All advertising materials mentioning features or use of this software
42*19c3b8c2SApple OSS Distributions  *    must display the following acknowledgement:
43*19c3b8c2SApple OSS Distributions  *	This product includes software developed by the University of
44*19c3b8c2SApple OSS Distributions  *	California, Berkeley and its contributors.
45*19c3b8c2SApple OSS Distributions  * 4. Neither the name of the University nor the names of its contributors
46*19c3b8c2SApple OSS Distributions  *    may be used to endorse or promote products derived from this software
47*19c3b8c2SApple OSS Distributions  *    without specific prior written permission.
48*19c3b8c2SApple OSS Distributions  *
49*19c3b8c2SApple OSS Distributions  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50*19c3b8c2SApple OSS Distributions  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51*19c3b8c2SApple OSS Distributions  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52*19c3b8c2SApple OSS Distributions  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53*19c3b8c2SApple OSS Distributions  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54*19c3b8c2SApple OSS Distributions  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55*19c3b8c2SApple OSS Distributions  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56*19c3b8c2SApple OSS Distributions  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57*19c3b8c2SApple OSS Distributions  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58*19c3b8c2SApple OSS Distributions  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59*19c3b8c2SApple OSS Distributions  * SUCH DAMAGE.
60*19c3b8c2SApple OSS Distributions  *
61*19c3b8c2SApple OSS Distributions  *	@(#)wait.h	8.2 (Berkeley) 7/10/94
62*19c3b8c2SApple OSS Distributions  */
63*19c3b8c2SApple OSS Distributions 
64*19c3b8c2SApple OSS Distributions #ifndef _SYS_WAIT_H_
65*19c3b8c2SApple OSS Distributions #define _SYS_WAIT_H_
66*19c3b8c2SApple OSS Distributions 
67*19c3b8c2SApple OSS Distributions #include <sys/cdefs.h>
68*19c3b8c2SApple OSS Distributions #include <sys/_types.h>
69*19c3b8c2SApple OSS Distributions 
70*19c3b8c2SApple OSS Distributions /*
71*19c3b8c2SApple OSS Distributions  * This file holds definitions relevent to the wait4 system call
72*19c3b8c2SApple OSS Distributions  * and the alternate interfaces that use it (wait, wait3, waitpid).
73*19c3b8c2SApple OSS Distributions  */
74*19c3b8c2SApple OSS Distributions 
75*19c3b8c2SApple OSS Distributions /*
76*19c3b8c2SApple OSS Distributions  * [XSI] The type idtype_t shall be defined as an enumeration type whose
77*19c3b8c2SApple OSS Distributions  * possible values shall include at least P_ALL, P_PID, and P_PGID.
78*19c3b8c2SApple OSS Distributions  */
79*19c3b8c2SApple OSS Distributions typedef enum {
80*19c3b8c2SApple OSS Distributions 	P_ALL,
81*19c3b8c2SApple OSS Distributions 	P_PID,
82*19c3b8c2SApple OSS Distributions 	P_PGID
83*19c3b8c2SApple OSS Distributions } idtype_t;
84*19c3b8c2SApple OSS Distributions 
85*19c3b8c2SApple OSS Distributions /*
86*19c3b8c2SApple OSS Distributions  * [XSI] The id_t and pid_t types shall be defined as described
87*19c3b8c2SApple OSS Distributions  * in <sys/types.h>
88*19c3b8c2SApple OSS Distributions  */
89*19c3b8c2SApple OSS Distributions #include <sys/_types/_pid_t.h>
90*19c3b8c2SApple OSS Distributions #include <sys/_types/_id_t.h>
91*19c3b8c2SApple OSS Distributions 
92*19c3b8c2SApple OSS Distributions /*
93*19c3b8c2SApple OSS Distributions  * [XSI] The siginfo_t type shall be defined as described in <signal.h>
94*19c3b8c2SApple OSS Distributions  * [XSI] The rusage structure shall be defined as described in <sys/resource.h>
95*19c3b8c2SApple OSS Distributions  * [XSI] Inclusion of the <sys/wait.h> header may also make visible all
96*19c3b8c2SApple OSS Distributions  * symbols from <signal.h> and <sys/resource.h>
97*19c3b8c2SApple OSS Distributions  *
98*19c3b8c2SApple OSS Distributions  * NOTE:	This requirement is currently being satisfied by the direct
99*19c3b8c2SApple OSS Distributions  *		inclusion of <sys/signal.h> and <sys/resource.h>, below.
100*19c3b8c2SApple OSS Distributions  *
101*19c3b8c2SApple OSS Distributions  *		Software should not depend on the exposure of anything other
102*19c3b8c2SApple OSS Distributions  *		than the types siginfo_t and struct rusage as a result of
103*19c3b8c2SApple OSS Distributions  *		this inclusion.  If you depend on any types or manifest
104*19c3b8c2SApple OSS Distributions  *		values othe than siginfo_t and struct rusage from either of
105*19c3b8c2SApple OSS Distributions  *		those files, you should explicitly include them yourself, as
106*19c3b8c2SApple OSS Distributions  *		well, or in future releases your stware may not compile
107*19c3b8c2SApple OSS Distributions  *		without modification.
108*19c3b8c2SApple OSS Distributions  */
109*19c3b8c2SApple OSS Distributions #include <sys/signal.h>         /* [XSI] for siginfo_t */
110*19c3b8c2SApple OSS Distributions #include <sys/resource.h>       /* [XSI] for struct rusage */
111*19c3b8c2SApple OSS Distributions 
112*19c3b8c2SApple OSS Distributions /*
113*19c3b8c2SApple OSS Distributions  * Option bits for the third argument of wait4.  WNOHANG causes the
114*19c3b8c2SApple OSS Distributions  * wait to not hang if there are no stopped or terminated processes, rather
115*19c3b8c2SApple OSS Distributions  * returning an error indication in this case (pid==0).  WUNTRACED
116*19c3b8c2SApple OSS Distributions  * indicates that the caller should receive status about untraced children
117*19c3b8c2SApple OSS Distributions  * which stop due to signals.  If children are stopped and a wait without
118*19c3b8c2SApple OSS Distributions  * this option is done, it is as though they were still running... nothing
119*19c3b8c2SApple OSS Distributions  * about them is returned.
120*19c3b8c2SApple OSS Distributions  */
121*19c3b8c2SApple OSS Distributions #define WNOHANG         0x00000001  /* [XSI] no hang in wait/no child to reap */
122*19c3b8c2SApple OSS Distributions #define WUNTRACED       0x00000002  /* [XSI] notify on stop, untraced child */
123*19c3b8c2SApple OSS Distributions 
124*19c3b8c2SApple OSS Distributions /*
125*19c3b8c2SApple OSS Distributions  * Macros to test the exit status returned by wait
126*19c3b8c2SApple OSS Distributions  * and extract the relevant values.
127*19c3b8c2SApple OSS Distributions  */
128*19c3b8c2SApple OSS Distributions #if defined(_POSIX_C_SOURCE) && !defined(_DARWIN_C_SOURCE)
129*19c3b8c2SApple OSS Distributions #define _W_INT(i)       (i)
130*19c3b8c2SApple OSS Distributions #else
131*19c3b8c2SApple OSS Distributions #define _W_INT(w)       (*(int *)&(w))  /* convert union wait to int */
132*19c3b8c2SApple OSS Distributions #define WCOREFLAG       0200
133*19c3b8c2SApple OSS Distributions #endif /* (_POSIX_C_SOURCE && !_DARWIN_C_SOURCE) */
134*19c3b8c2SApple OSS Distributions 
135*19c3b8c2SApple OSS Distributions /* These macros are permited, as they are in the implementation namespace */
136*19c3b8c2SApple OSS Distributions #define _WSTATUS(x)     (_W_INT(x) & 0177)
137*19c3b8c2SApple OSS Distributions #define _WSTOPPED       0177            /* _WSTATUS if process is stopped */
138*19c3b8c2SApple OSS Distributions 
139*19c3b8c2SApple OSS Distributions /*
140*19c3b8c2SApple OSS Distributions  * [XSI] The <sys/wait.h> header shall define the following macros for
141*19c3b8c2SApple OSS Distributions  * analysis of process status values
142*19c3b8c2SApple OSS Distributions  */
143*19c3b8c2SApple OSS Distributions #if __DARWIN_UNIX03
144*19c3b8c2SApple OSS Distributions #define WEXITSTATUS(x)  ((_W_INT(x) >> 8) & 0x000000ff)
145*19c3b8c2SApple OSS Distributions #else /* !__DARWIN_UNIX03 */
146*19c3b8c2SApple OSS Distributions #define WEXITSTATUS(x)  (_W_INT(x) >> 8)
147*19c3b8c2SApple OSS Distributions #endif /* !__DARWIN_UNIX03 */
148*19c3b8c2SApple OSS Distributions /* 0x13 == SIGCONT */
149*19c3b8c2SApple OSS Distributions #define WSTOPSIG(x)     (_W_INT(x) >> 8)
150*19c3b8c2SApple OSS Distributions #define WIFCONTINUED(x) (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) == 0x13)
151*19c3b8c2SApple OSS Distributions #define WIFSTOPPED(x)   (_WSTATUS(x) == _WSTOPPED && WSTOPSIG(x) != 0x13)
152*19c3b8c2SApple OSS Distributions #define WIFEXITED(x)    (_WSTATUS(x) == 0)
153*19c3b8c2SApple OSS Distributions #define WIFSIGNALED(x)  (_WSTATUS(x) != _WSTOPPED && _WSTATUS(x) != 0)
154*19c3b8c2SApple OSS Distributions #define WTERMSIG(x)     (_WSTATUS(x))
155*19c3b8c2SApple OSS Distributions #if (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
156*19c3b8c2SApple OSS Distributions #define WCOREDUMP(x)    (_W_INT(x) & WCOREFLAG)
157*19c3b8c2SApple OSS Distributions 
158*19c3b8c2SApple OSS Distributions #define W_EXITCODE(ret, sig)    ((ret) << 8 | (sig))
159*19c3b8c2SApple OSS Distributions #define W_STOPCODE(sig)         ((sig) << 8 | _WSTOPPED)
160*19c3b8c2SApple OSS Distributions #endif /* (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)) */
161*19c3b8c2SApple OSS Distributions 
162*19c3b8c2SApple OSS Distributions /*
163*19c3b8c2SApple OSS Distributions  * [XSI] The following symbolic constants shall be defined as possible
164*19c3b8c2SApple OSS Distributions  * values for the fourth argument to waitid().
165*19c3b8c2SApple OSS Distributions  */
166*19c3b8c2SApple OSS Distributions /* WNOHANG already defined for wait4() */
167*19c3b8c2SApple OSS Distributions /* WUNTRACED defined for wait4() but not for waitid() */
168*19c3b8c2SApple OSS Distributions #define WEXITED         0x00000004  /* [XSI] Processes which have exitted */
169*19c3b8c2SApple OSS Distributions #if __DARWIN_UNIX03
170*19c3b8c2SApple OSS Distributions /* waitid() parameter */
171*19c3b8c2SApple OSS Distributions #define WSTOPPED        0x00000008  /* [XSI] Any child stopped by signal */
172*19c3b8c2SApple OSS Distributions #endif
173*19c3b8c2SApple OSS Distributions #define WCONTINUED      0x00000010  /* [XSI] Any child stopped then continued */
174*19c3b8c2SApple OSS Distributions #define WNOWAIT         0x00000020  /* [XSI] Leave process returned waitable */
175*19c3b8c2SApple OSS Distributions 
176*19c3b8c2SApple OSS Distributions 
177*19c3b8c2SApple OSS Distributions #if (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
178*19c3b8c2SApple OSS Distributions /* POSIX extensions and 4.2/4.3 compatability: */
179*19c3b8c2SApple OSS Distributions 
180*19c3b8c2SApple OSS Distributions /*
181*19c3b8c2SApple OSS Distributions  * Tokens for special values of the "pid" parameter to wait4.
182*19c3b8c2SApple OSS Distributions  */
183*19c3b8c2SApple OSS Distributions #define WAIT_ANY        (-1)    /* any process */
184*19c3b8c2SApple OSS Distributions #define WAIT_MYPGRP     0       /* any process in my process group */
185*19c3b8c2SApple OSS Distributions 
186*19c3b8c2SApple OSS Distributions #include <machine/endian.h>
187*19c3b8c2SApple OSS Distributions 
188*19c3b8c2SApple OSS Distributions /*
189*19c3b8c2SApple OSS Distributions  * Deprecated:
190*19c3b8c2SApple OSS Distributions  * Structure of the information in the status word returned by wait4.
191*19c3b8c2SApple OSS Distributions  * If w_stopval==_WSTOPPED, then the second structure describes
192*19c3b8c2SApple OSS Distributions  * the information returned, else the first.
193*19c3b8c2SApple OSS Distributions  */
194*19c3b8c2SApple OSS Distributions union wait {
195*19c3b8c2SApple OSS Distributions 	int     w_status;               /* used in syscall */
196*19c3b8c2SApple OSS Distributions 	/*
197*19c3b8c2SApple OSS Distributions 	 * Terminated process status.
198*19c3b8c2SApple OSS Distributions 	 */
199*19c3b8c2SApple OSS Distributions 	struct {
200*19c3b8c2SApple OSS Distributions #if __DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN
201*19c3b8c2SApple OSS Distributions 		unsigned int    w_Termsig:7,    /* termination signal */
202*19c3b8c2SApple OSS Distributions 		    w_Coredump:1,               /* core dump indicator */
203*19c3b8c2SApple OSS Distributions 		    w_Retcode:8,                /* exit code if w_termsig==0 */
204*19c3b8c2SApple OSS Distributions 		    w_Filler:16;                /* upper bits filler */
205*19c3b8c2SApple OSS Distributions #endif
206*19c3b8c2SApple OSS Distributions #if __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN
207*19c3b8c2SApple OSS Distributions 		unsigned int    w_Filler:16,    /* upper bits filler */
208*19c3b8c2SApple OSS Distributions 		    w_Retcode:8,                /* exit code if w_termsig==0 */
209*19c3b8c2SApple OSS Distributions 		    w_Coredump:1,               /* core dump indicator */
210*19c3b8c2SApple OSS Distributions 		    w_Termsig:7;                /* termination signal */
211*19c3b8c2SApple OSS Distributions #endif
212*19c3b8c2SApple OSS Distributions 	} w_T;
213*19c3b8c2SApple OSS Distributions 	/*
214*19c3b8c2SApple OSS Distributions 	 * Stopped process status.  Returned
215*19c3b8c2SApple OSS Distributions 	 * only for traced children unless requested
216*19c3b8c2SApple OSS Distributions 	 * with the WUNTRACED option bit.
217*19c3b8c2SApple OSS Distributions 	 */
218*19c3b8c2SApple OSS Distributions 	struct {
219*19c3b8c2SApple OSS Distributions #if __DARWIN_BYTE_ORDER == __DARWIN_LITTLE_ENDIAN
220*19c3b8c2SApple OSS Distributions 		unsigned int    w_Stopval:8,    /* == W_STOPPED if stopped */
221*19c3b8c2SApple OSS Distributions 		    w_Stopsig:8,                /* signal that stopped us */
222*19c3b8c2SApple OSS Distributions 		    w_Filler:16;                /* upper bits filler */
223*19c3b8c2SApple OSS Distributions #endif
224*19c3b8c2SApple OSS Distributions #if __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN
225*19c3b8c2SApple OSS Distributions 		unsigned int    w_Filler:16,    /* upper bits filler */
226*19c3b8c2SApple OSS Distributions 		    w_Stopsig:8,                /* signal that stopped us */
227*19c3b8c2SApple OSS Distributions 		    w_Stopval:8;                /* == W_STOPPED if stopped */
228*19c3b8c2SApple OSS Distributions #endif
229*19c3b8c2SApple OSS Distributions 	} w_S;
230*19c3b8c2SApple OSS Distributions };
231*19c3b8c2SApple OSS Distributions #define w_termsig       w_T.w_Termsig
232*19c3b8c2SApple OSS Distributions #define w_coredump      w_T.w_Coredump
233*19c3b8c2SApple OSS Distributions #define w_retcode       w_T.w_Retcode
234*19c3b8c2SApple OSS Distributions #define w_stopval       w_S.w_Stopval
235*19c3b8c2SApple OSS Distributions #define w_stopsig       w_S.w_Stopsig
236*19c3b8c2SApple OSS Distributions 
237*19c3b8c2SApple OSS Distributions #endif /* (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)) */
238*19c3b8c2SApple OSS Distributions 
239*19c3b8c2SApple OSS Distributions #if !(__DARWIN_UNIX03 - 0)
240*19c3b8c2SApple OSS Distributions /*
241*19c3b8c2SApple OSS Distributions  * Stopped state value; cannot use waitid() parameter of the same name
242*19c3b8c2SApple OSS Distributions  * in the same scope
243*19c3b8c2SApple OSS Distributions  */
244*19c3b8c2SApple OSS Distributions #define WSTOPPED        _WSTOPPED
245*19c3b8c2SApple OSS Distributions #endif /* !__DARWIN_UNIX03 */
246*19c3b8c2SApple OSS Distributions 
247*19c3b8c2SApple OSS Distributions #ifndef KERNEL
248*19c3b8c2SApple OSS Distributions __BEGIN_DECLS
249*19c3b8c2SApple OSS Distributions pid_t   wait(int *) __DARWIN_ALIAS_C(wait);
250*19c3b8c2SApple OSS Distributions pid_t   waitpid(pid_t, int *, int) __DARWIN_ALIAS_C(waitpid);
251*19c3b8c2SApple OSS Distributions #ifndef _ANSI_SOURCE
252*19c3b8c2SApple OSS Distributions int     waitid(idtype_t, id_t, siginfo_t *, int) __DARWIN_ALIAS_C(waitid);
253*19c3b8c2SApple OSS Distributions #endif /* !_ANSI_SOURCE */
254*19c3b8c2SApple OSS Distributions #if  (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
255*19c3b8c2SApple OSS Distributions pid_t   wait3(int *, int, struct rusage *);
256*19c3b8c2SApple OSS Distributions pid_t   wait4(pid_t, int *, int, struct rusage *);
257*19c3b8c2SApple OSS Distributions #endif /* (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)) */
258*19c3b8c2SApple OSS Distributions __END_DECLS
259*19c3b8c2SApple OSS Distributions #endif
260*19c3b8c2SApple OSS Distributions #endif /* !_SYS_WAIT_H_ */
261