xref: /freebsd-13.1/lib/libc/sys/wait.2 (revision dfd1ff19)
1.\" Copyright (c) 1980, 1991, 1993, 1994
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)wait.2	8.2 (Berkeley) 4/19/94
33.\" $FreeBSD$
34.\"
35.Dd November 12, 2005
36.Dt WAIT 2
37.Os
38.Sh NAME
39.Nm wait ,
40.Nm waitpid ,
41.Nm wait4 ,
42.Nm wait3
43.Nd wait for process termination
44.Sh LIBRARY
45.Lb libc
46.Sh SYNOPSIS
47.In sys/types.h
48.In sys/wait.h
49.Ft pid_t
50.Fn wait "int *status"
51.In sys/time.h
52.In sys/resource.h
53.Ft pid_t
54.Fn waitpid "pid_t wpid" "int *status" "int options"
55.Ft pid_t
56.Fn wait3 "int *status" "int options" "struct rusage *rusage"
57.Ft pid_t
58.Fn wait4 "pid_t wpid" "int *status" "int options" "struct rusage *rusage"
59.Sh DESCRIPTION
60The
61.Fn wait
62function suspends execution of its calling process until
63.Fa status
64information is available for a terminated child process,
65or a signal is received.
66On return from a successful
67.Fn wait
68call,
69the
70.Fa status
71area contains termination information about the process that exited
72as defined below.
73.Pp
74The
75.Fn wait4
76system call provides a more general interface for programs
77that need to wait for certain child processes,
78that need resource utilization statistics accumulated by child processes,
79or that require options.
80The other wait functions are implemented using
81.Fn wait4 .
82.Pp
83The
84.Fa wpid
85argument specifies the set of child processes for which to wait.
86If
87.Fa wpid
88is -1, the call waits for any child process.
89If
90.Fa wpid
91is 0,
92the call waits for any child process in the process group of the caller.
93If
94.Fa wpid
95is greater than zero, the call waits for the process with process id
96.Fa wpid .
97If
98.Fa wpid
99is less than -1, the call waits for any process whose process group id
100equals the absolute value of
101.Fa wpid .
102.Pp
103The
104.Fa status
105argument is defined below.
106The
107.Fa options
108argument contains the bitwise OR of any of the following options.
109The
110.Dv WCONTINUED
111option indicates that children of the current process that
112have continued from a job control stop, by receiving a
113.Dv SIGCONT
114signal, should also have their status reported.
115The
116.Dv WNOHANG
117option
118is used to indicate that the call should not block if
119there are no processes that wish to report status.
120If the
121.Dv WUNTRACED
122option is set,
123children of the current process that are stopped
124due to a
125.Dv SIGTTIN , SIGTTOU , SIGTSTP ,
126or
127.Dv SIGSTOP
128signal also have
129their status reported.
130.Pp
131If
132.Fa rusage
133is non-zero, a summary of the resources used by the terminated
134process and all its
135children is returned (this information is currently not available
136for stopped or continued processes).
137.Pp
138When the
139.Dv WNOHANG
140option is specified and no processes
141wish to report status,
142.Fn wait4
143returns a
144process id
145of 0.
146.Pp
147The
148.Fn waitpid
149function is identical to
150.Fn wait4
151with an
152.Fa rusage
153value of zero.
154The older
155.Fn wait3
156call is the same as
157.Fn wait4
158with a
159.Fa wpid
160value of -1.
161.Pp
162The following macros may be used to test the manner of exit of the process.
163One of the first three macros will evaluate to a non-zero (true) value:
164.Bl -tag -width Ds
165.It Fn WIFCONTINUED status
166True if the process has not terminated, and
167has continued after a job control stop.
168This macro can be true only if the wait call specified the
169.Dv WCONTINUED
170option).
171.It Fn WIFEXITED status
172True if the process terminated normally by a call to
173.Xr _exit 2
174or
175.Xr exit 3 .
176.It Fn WIFSIGNALED status
177True if the process terminated due to receipt of a signal.
178.It Fn WIFSTOPPED status
179True if the process has not terminated, but has stopped and can be restarted.
180This macro can be true only if the wait call specified the
181.Dv WUNTRACED
182option
183or if the child process is being traced (see
184.Xr ptrace 2 ) .
185.El
186.Pp
187Depending on the values of those macros, the following macros
188produce the remaining status information about the child process:
189.Bl -tag -width Ds
190.It Fn WEXITSTATUS status
191If
192.Fn WIFEXITED status
193is true, evaluates to the low-order 8 bits
194of the argument passed to
195.Xr _exit 2
196or
197.Xr exit 3
198by the child.
199.It Fn WTERMSIG status
200If
201.Fn WIFSIGNALED status
202is true, evaluates to the number of the signal
203that caused the termination of the process.
204.It Fn WCOREDUMP status
205If
206.Fn WIFSIGNALED status
207is true, evaluates as true if the termination
208of the process was accompanied by the creation of a core file
209containing an image of the process when the signal was received.
210.It Fn WSTOPSIG status
211If
212.Fn WIFSTOPPED status
213is true, evaluates to the number of the signal
214that caused the process to stop.
215.El
216.Sh NOTES
217See
218.Xr sigaction 2
219for a list of termination signals.
220A status of 0 indicates normal termination.
221.Pp
222If a parent process terminates without
223waiting for all of its child processes to terminate,
224the remaining child processes are assigned the parent
225process 1 ID (the init process ID).
226.Pp
227If a signal is caught while any of the
228.Fn wait
229calls are pending,
230the call may be interrupted or restarted when the signal-catching routine
231returns,
232depending on the options in effect for the signal;
233see
234.Xr intro 2 ,
235System call restart.
236.Pp
237The implementation queues one
238.Dv SIGCHLD
239signal for each child process whose
240status has changed, if
241.Fn wait
242returns because the status of a child process is available, the pending
243SIGCHLD signal associated with the process ID of the child process will
244be discarded.
245Any other pending
246.Dv SIGCHLD
247signals remain pending.
248.Pp
249If
250.Dv SIGCHLD
251is blocked,
252.Fn wait
253returns because the status of a child process is available, the pending
254.Dv SIGCHLD
255signal will be cleared unless another status of the child process
256is available.
257.Sh RETURN VALUES
258If
259.Fn wait
260returns due to a stopped, continued,
261or terminated child process, the process ID of the child
262is returned to the calling process.
263Otherwise, a value of \-1
264is returned and
265.Va errno
266is set to indicate the error.
267.Pp
268If
269.Fn wait4 ,
270.Fn wait3 ,
271or
272.Fn waitpid
273returns due to a stopped, continued,
274or terminated child process, the process ID of the child
275is returned to the calling process.
276If there are no children not previously awaited,
277-1 is returned with
278.Va errno
279set to
280.Er ECHILD .
281Otherwise, if
282.Dv WNOHANG
283is specified and there are
284no stopped, continued or exited children,
2850 is returned.
286If an error is detected or a caught signal aborts the call,
287a value of -1
288is returned and
289.Va errno
290is set to indicate the error.
291.Sh ERRORS
292The
293.Fn wait
294function
295will fail and return immediately if:
296.Bl -tag -width Er
297.It Bq Er ECHILD
298The calling process has no existing unwaited-for
299child processes.
300.It Bq Er ECHILD
301No status from the terminated child process is available
302because the calling process has asked the system to discard
303such status by ignoring the signal
304.Dv SIGCHLD
305or setting the flag
306.Dv SA_NOCLDWAIT
307for that signal.
308.It Bq Er EFAULT
309The
310.Fa status
311or
312.Fa rusage
313argument points to an illegal address.
314(May not be detected before exit of a child process.)
315.It Bq Er EINTR
316The call was interrupted by a caught signal,
317or the signal did not have the
318.Dv SA_RESTART
319flag set.
320.El
321.Sh SEE ALSO
322.Xr _exit 2 ,
323.Xr ptrace 2 ,
324.Xr sigaction 2 ,
325.Xr exit 3 ,
326.Xr siginfo 3
327.Sh STANDARDS
328The
329.Fn wait
330and
331.Fn waitpid
332functions are defined by POSIX;
333.Fn wait4
334and
335.Fn wait3
336are not specified by POSIX.
337The
338.Fn WCOREDUMP
339macro
340and the ability to restart a pending
341.Fn wait
342call are extensions to the POSIX interface.
343.Sh HISTORY
344The
345.Fn wait
346function appeared in
347.At v6 .
348