1994-05-27 05:00:24 +00:00
|
|
|
.\" Copyright (c) 1980, 1991, 1993, 1994
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)wait.2 8.2 (Berkeley) 4/19/94
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
.\"
|
2016-06-01 19:49:38 +00:00
|
|
|
.Dd June 1, 2016
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dt WAIT 2
|
2001-07-10 13:41:46 +00:00
|
|
|
.Os
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm wait ,
|
2012-11-13 12:56:42 +00:00
|
|
|
.Nm waitid ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Nm waitpid ,
|
2012-11-13 12:56:42 +00:00
|
|
|
.Nm wait3 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Nm wait4 ,
|
2012-11-13 12:56:42 +00:00
|
|
|
.Nm wait6
|
|
|
|
.Nd wait for processes to change status
|
2000-04-21 09:42:15 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh SYNOPSIS
|
2001-10-01 16:09:29 +00:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/wait.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft pid_t
|
|
|
|
.Fn wait "int *status"
|
|
|
|
.Ft pid_t
|
|
|
|
.Fn waitpid "pid_t wpid" "int *status" "int options"
|
2013-12-01 11:59:37 +00:00
|
|
|
.In signal.h
|
2012-11-13 12:56:42 +00:00
|
|
|
.Ft int
|
|
|
|
.Fn waitid "idtype_t idtype" "id_t id" "siginfo_t *info" "int options"
|
2010-01-20 22:26:36 +00:00
|
|
|
.In sys/time.h
|
|
|
|
.In sys/resource.h
|
1994-05-27 05:00:24 +00:00
|
|
|
.Ft pid_t
|
|
|
|
.Fn wait3 "int *status" "int options" "struct rusage *rusage"
|
|
|
|
.Ft pid_t
|
|
|
|
.Fn wait4 "pid_t wpid" "int *status" "int options" "struct rusage *rusage"
|
2012-11-13 12:56:42 +00:00
|
|
|
.Ft pid_t
|
|
|
|
.Fn wait6 "idtype_t idtype" "id_t id" "int *status" "int options" "struct __wrusage *wrusage" "siginfo_t *infop"
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Fn wait
|
2013-12-03 21:00:13 +00:00
|
|
|
function suspends execution of its calling thread until
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa status
|
2013-12-03 21:00:13 +00:00
|
|
|
information is available for a child process
|
1994-05-27 05:00:24 +00:00
|
|
|
or a signal is received.
|
2001-07-15 07:53:42 +00:00
|
|
|
On return from a successful
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn wait
|
2001-07-15 07:53:42 +00:00
|
|
|
call,
|
1994-05-27 05:00:24 +00:00
|
|
|
the
|
|
|
|
.Fa status
|
2013-12-03 21:00:13 +00:00
|
|
|
area contains information about the process that reported a status change
|
1994-05-27 05:00:24 +00:00
|
|
|
as defined below.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn wait4
|
2013-12-03 21:00:13 +00:00
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
system calls provide a more general interface for programs
|
|
|
|
that need to wait for specific child processes,
|
1994-05-27 05:00:24 +00:00
|
|
|
that need resource utilization statistics accumulated by child processes,
|
|
|
|
or that require options.
|
2013-12-03 21:00:13 +00:00
|
|
|
The other wait functions are implemented using either
|
|
|
|
.Fn wait4
|
|
|
|
or
|
|
|
|
.Fn wait6 .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
2013-12-03 21:00:13 +00:00
|
|
|
The
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait6
|
2013-12-03 21:00:13 +00:00
|
|
|
function is the most general function in this family and its distinct
|
|
|
|
features are:
|
|
|
|
.Pp
|
|
|
|
All of the desired process statuses to be waited on must be explicitly
|
|
|
|
specified in
|
|
|
|
.Fa options .
|
|
|
|
The
|
|
|
|
.Fn wait ,
|
|
|
|
.Fn waitpid ,
|
|
|
|
.Fn wait3 ,
|
|
|
|
and
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait4
|
2013-12-03 21:00:13 +00:00
|
|
|
functions all implicitly wait for exited and trapped processes,
|
|
|
|
but the
|
2013-12-06 21:22:33 +00:00
|
|
|
.Fn waitid
|
2013-12-03 21:00:13 +00:00
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
functions require the corresponding
|
2012-11-13 12:56:42 +00:00
|
|
|
.Dv WEXITED
|
2013-12-03 21:00:13 +00:00
|
|
|
and
|
|
|
|
.Dv WTRAPPED
|
|
|
|
flags to be explicitly specified.
|
|
|
|
This allows waiting for processes which have experienced other
|
|
|
|
status changes without having to also handle the exit status from
|
|
|
|
terminated processes.
|
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fn wait6
|
|
|
|
function accepts a
|
|
|
|
.Fa wrusage
|
|
|
|
argument which points to a structure defined as:
|
2012-11-13 12:56:42 +00:00
|
|
|
.Bd -literal
|
|
|
|
struct __wrusage {
|
|
|
|
struct rusage wru_self;
|
|
|
|
struct rusage wru_children;
|
|
|
|
};
|
|
|
|
.Ed
|
2013-12-03 21:00:13 +00:00
|
|
|
.Pp
|
2012-11-13 12:56:42 +00:00
|
|
|
This allows the calling process to collect resource usage statistics
|
|
|
|
from both its own child process as well as from its grand children.
|
|
|
|
When no resource usage statistics are needed this pointer can be
|
|
|
|
.Dv NULL .
|
2013-12-03 21:00:13 +00:00
|
|
|
.Pp
|
2012-11-13 12:56:42 +00:00
|
|
|
The last argument
|
|
|
|
.Fa infop
|
|
|
|
must be either
|
|
|
|
.Dv NULL
|
|
|
|
or a pointer to a
|
|
|
|
.Fa siginfo_t
|
|
|
|
structure.
|
2013-12-03 21:00:13 +00:00
|
|
|
If
|
|
|
|
.Pf non- Dv NULL ,
|
|
|
|
the structure is filled with the same data as for a
|
|
|
|
.Dv SIGCHLD
|
|
|
|
signal delivered when the process changed state.
|
|
|
|
.Pp
|
|
|
|
The set of child processes to be queried is specified by the arguments
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fa idtype
|
|
|
|
and
|
|
|
|
.Fa id .
|
|
|
|
The separate
|
|
|
|
.Fa idtype
|
|
|
|
and
|
|
|
|
.Fa id
|
2013-12-03 21:00:13 +00:00
|
|
|
arguments support many other types of
|
2016-04-30 01:24:24 +00:00
|
|
|
identifiers in addition to process IDs and process group IDs.
|
2012-11-13 12:56:42 +00:00
|
|
|
.Bl -bullet -offset indent
|
|
|
|
.It
|
|
|
|
If
|
|
|
|
.Fa idtype
|
|
|
|
is
|
|
|
|
.Dv P_PID ,
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
wait for the child process with a process ID equal to
|
|
|
|
.Dv (pid_t)id .
|
|
|
|
.It
|
|
|
|
If
|
|
|
|
.Fa idtype
|
|
|
|
is
|
|
|
|
.Dv P_PGID ,
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
wait for the child process with a process group ID equal to
|
|
|
|
.Dv (pid_t)id .
|
|
|
|
.It
|
|
|
|
If
|
|
|
|
.Fa idtype
|
|
|
|
is
|
|
|
|
.Dv P_ALL ,
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
wait for any child process and the
|
|
|
|
.Dv id
|
|
|
|
is ignored.
|
|
|
|
.It
|
|
|
|
If
|
|
|
|
.Fa idtype
|
|
|
|
is
|
|
|
|
.Dv P_PID
|
|
|
|
or
|
|
|
|
.Dv P_PGID
|
|
|
|
and the
|
|
|
|
.Dv id
|
|
|
|
is zero,
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
wait for any child process in the same process group as the caller.
|
|
|
|
.El
|
|
|
|
.Pp
|
2013-12-06 21:22:33 +00:00
|
|
|
Non-standard identifier types supported by this
|
2012-11-13 12:56:42 +00:00
|
|
|
implementation of
|
|
|
|
.Fn waitid
|
|
|
|
and
|
2013-12-03 21:00:13 +00:00
|
|
|
.Fn wait6
|
2012-11-13 12:56:42 +00:00
|
|
|
are:
|
2013-12-03 21:00:13 +00:00
|
|
|
.Bl -tag -width P_JAILID
|
|
|
|
.It Dv P_UID
|
|
|
|
Wait for processes whose effective user ID is equal to
|
|
|
|
.Dv (uid_t) Fa id .
|
|
|
|
.It Dv P_GID
|
|
|
|
Wait for processes whose effective group ID is equal to
|
|
|
|
.Dv (gid_t) Fa id .
|
|
|
|
.It Dv P_SID
|
|
|
|
Wait for processes whose session ID is equal to
|
|
|
|
.Fa id .
|
|
|
|
.\" This is just how sessions work, not sure this needs to be documented here
|
|
|
|
If the child process started its own session,
|
|
|
|
its session ID will be the same as its process ID.
|
|
|
|
Otherwise the session ID of a child process will match the caller's session ID.
|
|
|
|
.It Dv P_JAILID
|
|
|
|
Waits for processes within a jail whose jail identifier is equal to
|
|
|
|
.Fa id .
|
2012-11-13 12:56:42 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
2013-12-03 21:00:13 +00:00
|
|
|
For the
|
|
|
|
.Fn waitpid
|
2012-11-13 12:56:42 +00:00
|
|
|
and
|
|
|
|
.Fn wait4
|
|
|
|
functions, the single
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa wpid
|
2002-12-19 09:40:28 +00:00
|
|
|
argument specifies the set of child processes for which to wait.
|
2012-11-13 12:56:42 +00:00
|
|
|
.Bl -bullet -offset indent
|
|
|
|
.It
|
1994-05-27 05:00:24 +00:00
|
|
|
If
|
|
|
|
.Fa wpid
|
|
|
|
is -1, the call waits for any child process.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It
|
1994-05-27 05:00:24 +00:00
|
|
|
If
|
|
|
|
.Fa wpid
|
|
|
|
is 0,
|
|
|
|
the call waits for any child process in the process group of the caller.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It
|
1994-05-27 05:00:24 +00:00
|
|
|
If
|
|
|
|
.Fa wpid
|
2013-12-03 21:00:13 +00:00
|
|
|
is greater than zero, the call waits for the process with process ID
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa wpid .
|
2012-11-13 12:56:42 +00:00
|
|
|
.It
|
1994-05-27 05:00:24 +00:00
|
|
|
If
|
|
|
|
.Fa wpid
|
2013-12-03 21:00:13 +00:00
|
|
|
is less than -1, the call waits for any process whose process group ID
|
1994-05-27 05:00:24 +00:00
|
|
|
equals the absolute value of
|
|
|
|
.Fa wpid .
|
2012-11-13 12:56:42 +00:00
|
|
|
.El
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
|
|
|
The
|
|
|
|
.Fa status
|
2004-07-02 23:52:20 +00:00
|
|
|
argument is defined below.
|
2008-08-26 12:37:16 +00:00
|
|
|
.Pp
|
2004-07-02 23:52:20 +00:00
|
|
|
The
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fa options
|
2002-12-19 09:40:28 +00:00
|
|
|
argument contains the bitwise OR of any of the following options.
|
2013-12-03 21:00:13 +00:00
|
|
|
.Bl -tag -width WCONTINUED
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Dv WCONTINUED
|
2013-12-03 21:00:13 +00:00
|
|
|
Report the status of selected processes that
|
|
|
|
have continued from a job control stop by receiving a
|
2002-06-01 18:38:58 +00:00
|
|
|
.Dv SIGCONT
|
2013-12-03 21:00:13 +00:00
|
|
|
signal.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Dv WNOHANG
|
2013-12-03 21:00:13 +00:00
|
|
|
Do not block when
|
2012-11-13 12:56:42 +00:00
|
|
|
there are no processes wishing to report status.
|
|
|
|
.It Dv WUNTRACED
|
2013-12-03 21:00:13 +00:00
|
|
|
Report the status of selected processes which are stopped due to a
|
1994-05-27 05:00:24 +00:00
|
|
|
.Dv SIGTTIN , SIGTTOU , SIGTSTP ,
|
|
|
|
or
|
|
|
|
.Dv SIGSTOP
|
2013-12-03 21:00:13 +00:00
|
|
|
signal.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Dv WSTOPPED
|
2013-12-03 21:00:13 +00:00
|
|
|
An alias for
|
2008-08-26 12:37:16 +00:00
|
|
|
.Dv WUNTRACED .
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Dv WTRAPPED
|
2013-12-03 21:00:13 +00:00
|
|
|
Report the status of selected processes which are being traced via
|
|
|
|
.Xr ptrace 2
|
|
|
|
and have trapped or reached a breakpoint.
|
|
|
|
This flag is implicitly set for the functions
|
|
|
|
.Fn wait ,
|
|
|
|
.Fn waitpid ,
|
|
|
|
.Fn wait3 ,
|
|
|
|
and
|
|
|
|
.Fn wait4 .
|
|
|
|
.br
|
|
|
|
For the
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
functions, the flag has to be explicitly included in
|
|
|
|
.Fa options
|
|
|
|
if status reports from trapped processes are expected.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Dv WEXITED
|
2013-12-03 21:00:13 +00:00
|
|
|
Report the status of selected processes which have terminated.
|
2012-11-13 12:56:42 +00:00
|
|
|
This flag is implicitly set for the functions
|
|
|
|
.Fn wait ,
|
|
|
|
.Fn waitpid ,
|
|
|
|
.Fn wait3 ,
|
|
|
|
and
|
|
|
|
.Fn wait4 .
|
|
|
|
.br
|
|
|
|
For the
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
2013-12-03 21:00:13 +00:00
|
|
|
functions, the flag has to be explicitly included in
|
|
|
|
.Fa options
|
2012-11-13 12:56:42 +00:00
|
|
|
if status reports from terminated processes are expected.
|
|
|
|
.It Dv WNOWAIT
|
2013-12-03 21:00:13 +00:00
|
|
|
Keep the process whose status is returned in a waitable state.
|
2008-08-26 12:37:16 +00:00
|
|
|
The process may be waited for again after this call completes.
|
2012-11-13 12:56:42 +00:00
|
|
|
.El
|
|
|
|
.sp
|
|
|
|
For the
|
|
|
|
.Fn waitid
|
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
functions, at least one of the options
|
|
|
|
.Dv WEXITED ,
|
|
|
|
.Dv WUNTRACED ,
|
|
|
|
.Dv WSTOPPED ,
|
|
|
|
.Dv WTRAPPED ,
|
|
|
|
or
|
|
|
|
.Dv WCONTINUED
|
|
|
|
must be specified.
|
|
|
|
Otherwise there will be no events for the call to report.
|
|
|
|
To avoid hanging indefinitely in such a case these functions
|
|
|
|
return -1 with
|
|
|
|
.Dv errno
|
|
|
|
set to
|
|
|
|
.Dv EINVAL .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fa rusage
|
2012-11-13 12:56:42 +00:00
|
|
|
is non-NULL, a summary of the resources used by the terminated
|
|
|
|
process and all its children is returned.
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fa wrusage
|
2013-12-03 21:00:13 +00:00
|
|
|
is non-NULL, separate summaries are returned for the resources used
|
|
|
|
by the terminated process and the resources used by all its children.
|
2012-11-13 12:56:42 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fa infop
|
2013-12-03 21:00:13 +00:00
|
|
|
is non-NULL, a
|
2012-11-13 12:56:42 +00:00
|
|
|
.Dv siginfo_t
|
2013-12-03 21:00:13 +00:00
|
|
|
structure is returned with the
|
|
|
|
.Fa si_signo
|
|
|
|
field set to
|
2012-11-13 12:56:42 +00:00
|
|
|
.Dv SIGCHLD
|
2013-12-03 21:00:13 +00:00
|
|
|
and the
|
|
|
|
.Fa si_pid
|
|
|
|
field set to the process ID of the process reporting status.
|
2015-07-18 09:02:50 +00:00
|
|
|
For the exited process, the
|
|
|
|
.Fa si_status
|
|
|
|
field of the
|
|
|
|
.Dv siginfo_t
|
|
|
|
structure contains the full 32 bit exit status passed to
|
|
|
|
.Xr _exit 2 ;
|
|
|
|
the
|
|
|
|
.Fa status
|
|
|
|
argument of other calls only returns 8 lowest bits of the exit status.
|
2013-12-03 21:00:13 +00:00
|
|
|
.Pp
|
|
|
|
When the
|
2012-11-13 12:56:42 +00:00
|
|
|
.Dv WNOHANG
|
2013-12-03 21:00:13 +00:00
|
|
|
option is specified and no processes
|
|
|
|
wish to report status,
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn waitid
|
2013-12-03 21:00:13 +00:00
|
|
|
sets the
|
|
|
|
.Fa si_signo
|
|
|
|
and
|
|
|
|
.Fa si_pid
|
|
|
|
fields in
|
|
|
|
.Fa infop
|
|
|
|
to zero.
|
|
|
|
Checking these fields is the only way to know if a status change was reported.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
|
|
|
When the
|
|
|
|
.Dv WNOHANG
|
|
|
|
option is specified and no processes
|
2001-07-15 07:53:42 +00:00
|
|
|
wish to report status,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn wait4
|
2013-12-03 21:00:13 +00:00
|
|
|
and
|
|
|
|
.Fn wait6
|
|
|
|
return a
|
1994-05-27 05:00:24 +00:00
|
|
|
process id
|
|
|
|
of 0.
|
|
|
|
.Pp
|
|
|
|
The
|
2013-12-03 21:00:13 +00:00
|
|
|
.Fn wait
|
|
|
|
call is the same as
|
|
|
|
.Fn wait4
|
|
|
|
with a
|
|
|
|
.Fa wpid
|
|
|
|
value of -1,
|
|
|
|
with an
|
|
|
|
.Fa options
|
|
|
|
value of zero,
|
|
|
|
and a
|
|
|
|
.Fa rusage
|
|
|
|
value of
|
|
|
|
.Dv NULL .
|
|
|
|
The
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn waitpid
|
2002-12-18 09:22:32 +00:00
|
|
|
function is identical to
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn wait4
|
|
|
|
with an
|
|
|
|
.Fa rusage
|
2013-12-03 21:00:13 +00:00
|
|
|
value of
|
|
|
|
.Dv NULL .
|
1994-05-27 05:00:24 +00:00
|
|
|
The older
|
|
|
|
.Fn wait3
|
|
|
|
call is the same as
|
|
|
|
.Fn wait4
|
|
|
|
with a
|
|
|
|
.Fa wpid
|
|
|
|
value of -1.
|
2012-11-13 12:56:42 +00:00
|
|
|
The
|
2013-12-03 21:00:13 +00:00
|
|
|
.Fn wait4
|
|
|
|
function is identical to
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait6
|
2013-12-03 21:00:13 +00:00
|
|
|
with the flags
|
2012-11-13 12:56:42 +00:00
|
|
|
.Dv WEXITED
|
|
|
|
and
|
|
|
|
.Dv WTRAPPED
|
2013-12-03 21:00:13 +00:00
|
|
|
set in
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fa options
|
2013-12-03 21:00:13 +00:00
|
|
|
and
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fa infop
|
|
|
|
set to
|
2013-12-03 21:00:13 +00:00
|
|
|
.Dv NULL .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Pp
|
2013-12-03 21:00:13 +00:00
|
|
|
The following macros may be used to test the current status of the process.
|
|
|
|
Exactly one of the following four macros will evaluate to a non-zero
|
|
|
|
.Pq true
|
|
|
|
value:
|
1994-05-27 05:00:24 +00:00
|
|
|
.Bl -tag -width Ds
|
2002-06-01 18:38:58 +00:00
|
|
|
.It Fn WIFCONTINUED status
|
|
|
|
True if the process has not terminated, and
|
|
|
|
has continued after a job control stop.
|
|
|
|
This macro can be true only if the wait call specified the
|
|
|
|
.Dv WCONTINUED
|
2013-12-03 21:00:13 +00:00
|
|
|
option.
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Fn WIFEXITED status
|
|
|
|
True if the process terminated normally by a call to
|
|
|
|
.Xr _exit 2
|
|
|
|
or
|
1996-02-11 22:38:05 +00:00
|
|
|
.Xr exit 3 .
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Fn WIFSIGNALED status
|
|
|
|
True if the process terminated due to receipt of a signal.
|
|
|
|
.It Fn WIFSTOPPED status
|
|
|
|
True if the process has not terminated, but has stopped and can be restarted.
|
|
|
|
This macro can be true only if the wait call specified the
|
|
|
|
.Dv WUNTRACED
|
|
|
|
option
|
|
|
|
or if the child process is being traced (see
|
|
|
|
.Xr ptrace 2 ) .
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
Depending on the values of those macros, the following macros
|
|
|
|
produce the remaining status information about the child process:
|
|
|
|
.Bl -tag -width Ds
|
|
|
|
.It Fn WEXITSTATUS status
|
|
|
|
If
|
|
|
|
.Fn WIFEXITED status
|
|
|
|
is true, evaluates to the low-order 8 bits
|
|
|
|
of the argument passed to
|
|
|
|
.Xr _exit 2
|
|
|
|
or
|
1996-02-11 22:38:05 +00:00
|
|
|
.Xr exit 3
|
1994-05-27 05:00:24 +00:00
|
|
|
by the child.
|
|
|
|
.It Fn WTERMSIG status
|
|
|
|
If
|
|
|
|
.Fn WIFSIGNALED status
|
|
|
|
is true, evaluates to the number of the signal
|
|
|
|
that caused the termination of the process.
|
|
|
|
.It Fn WCOREDUMP status
|
|
|
|
If
|
|
|
|
.Fn WIFSIGNALED status
|
|
|
|
is true, evaluates as true if the termination
|
|
|
|
of the process was accompanied by the creation of a core file
|
|
|
|
containing an image of the process when the signal was received.
|
|
|
|
.It Fn WSTOPSIG status
|
|
|
|
If
|
|
|
|
.Fn WIFSTOPPED status
|
|
|
|
is true, evaluates to the number of the signal
|
|
|
|
that caused the process to stop.
|
|
|
|
.El
|
|
|
|
.Sh NOTES
|
|
|
|
See
|
|
|
|
.Xr sigaction 2
|
|
|
|
for a list of termination signals.
|
|
|
|
A status of 0 indicates normal termination.
|
|
|
|
.Pp
|
|
|
|
If a parent process terminates without
|
|
|
|
waiting for all of its child processes to terminate,
|
|
|
|
the remaining child processes are assigned the parent
|
|
|
|
process 1 ID (the init process ID).
|
|
|
|
.Pp
|
|
|
|
If a signal is caught while any of the
|
|
|
|
.Fn wait
|
2000-05-11 05:29:10 +00:00
|
|
|
calls are pending,
|
1994-05-27 05:00:24 +00:00
|
|
|
the call may be interrupted or restarted when the signal-catching routine
|
|
|
|
returns,
|
|
|
|
depending on the options in effect for the signal;
|
2006-05-20 21:49:03 +00:00
|
|
|
see discussion of
|
|
|
|
.Dv SA_RESTART
|
|
|
|
in
|
|
|
|
.Xr sigaction 2 .
|
2005-11-11 05:30:48 +00:00
|
|
|
.Pp
|
2005-11-17 13:00:00 +00:00
|
|
|
The implementation queues one
|
|
|
|
.Dv SIGCHLD
|
|
|
|
signal for each child process whose
|
2013-12-03 21:00:13 +00:00
|
|
|
status has changed; if
|
2005-11-11 05:38:40 +00:00
|
|
|
.Fn wait
|
|
|
|
returns because the status of a child process is available, the pending
|
|
|
|
SIGCHLD signal associated with the process ID of the child process will
|
2005-11-17 13:00:00 +00:00
|
|
|
be discarded.
|
|
|
|
Any other pending
|
|
|
|
.Dv SIGCHLD
|
|
|
|
signals remain pending.
|
2005-11-11 05:30:48 +00:00
|
|
|
.Pp
|
2005-11-17 13:00:00 +00:00
|
|
|
If
|
|
|
|
.Dv SIGCHLD
|
2013-12-03 21:00:13 +00:00
|
|
|
is blocked and
|
2005-11-11 05:38:40 +00:00
|
|
|
.Fn wait
|
|
|
|
returns because the status of a child process is available, the pending
|
2005-11-17 13:00:00 +00:00
|
|
|
.Dv SIGCHLD
|
|
|
|
signal will be cleared unless another status of the child process
|
2005-11-11 05:38:40 +00:00
|
|
|
is available.
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
If
|
|
|
|
.Fn wait
|
2005-11-17 13:00:00 +00:00
|
|
|
returns due to a stopped, continued,
|
1994-05-27 05:00:24 +00:00
|
|
|
or terminated child process, the process ID of the child
|
2004-07-02 23:52:20 +00:00
|
|
|
is returned to the calling process.
|
2005-11-17 13:00:00 +00:00
|
|
|
Otherwise, a value of \-1
|
1994-05-27 05:00:24 +00:00
|
|
|
is returned and
|
|
|
|
.Va errno
|
|
|
|
is set to indicate the error.
|
|
|
|
.Pp
|
|
|
|
If
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait6 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
.Fn wait4 ,
|
2000-05-11 05:29:10 +00:00
|
|
|
.Fn wait3 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
or
|
|
|
|
.Fn waitpid
|
2005-11-12 01:37:03 +00:00
|
|
|
returns due to a stopped, continued,
|
1994-05-27 05:00:24 +00:00
|
|
|
or terminated child process, the process ID of the child
|
|
|
|
is returned to the calling process.
|
|
|
|
If there are no children not previously awaited,
|
|
|
|
-1 is returned with
|
|
|
|
.Va errno
|
|
|
|
set to
|
2000-11-22 16:02:00 +00:00
|
|
|
.Er ECHILD .
|
1994-05-27 05:00:24 +00:00
|
|
|
Otherwise, if
|
|
|
|
.Dv WNOHANG
|
|
|
|
is specified and there are
|
2005-11-12 01:37:03 +00:00
|
|
|
no stopped, continued or exited children,
|
1994-05-27 05:00:24 +00:00
|
|
|
0 is returned.
|
|
|
|
If an error is detected or a caught signal aborts the call,
|
|
|
|
a value of -1
|
|
|
|
is returned and
|
|
|
|
.Va errno
|
|
|
|
is set to indicate the error.
|
2012-11-13 12:56:42 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fn waitid
|
|
|
|
returns because one or more processes have a state change to report,
|
|
|
|
0 is returned.
|
2013-12-03 21:00:13 +00:00
|
|
|
If an error is detected,
|
|
|
|
a value of -1
|
|
|
|
is returned and
|
|
|
|
.Va errno
|
|
|
|
is set to indicate the error.
|
2012-11-13 12:56:42 +00:00
|
|
|
If
|
|
|
|
.Dv WNOHANG
|
2013-12-03 21:00:13 +00:00
|
|
|
is specified and there are
|
|
|
|
no stopped, continued or exited children,
|
|
|
|
0 is returned.
|
|
|
|
The
|
|
|
|
.Fa si_signo
|
|
|
|
and
|
|
|
|
.Fa si_pid
|
|
|
|
fields of
|
|
|
|
.Fa infop
|
|
|
|
must be checked against zero to determine if a process reported status.
|
2016-06-01 19:49:38 +00:00
|
|
|
.Pp
|
|
|
|
.Fn wait
|
|
|
|
called with -1 to wait for any child process will ignore a child that is
|
|
|
|
referenced by a process descriptor (see
|
|
|
|
.Xr pdfork 2 ) .
|
|
|
|
Specific processes can still be waited on by specifying the process ID
|
|
|
|
or descriptor (see
|
|
|
|
.Xr pdwait 4 ) .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh ERRORS
|
2002-12-18 09:22:32 +00:00
|
|
|
The
|
|
|
|
.Fn wait
|
|
|
|
function
|
1994-05-27 05:00:24 +00:00
|
|
|
will fail and return immediately if:
|
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er ECHILD
|
|
|
|
The calling process has no existing unwaited-for
|
|
|
|
child processes.
|
2004-06-07 11:01:39 +00:00
|
|
|
.It Bq Er ECHILD
|
|
|
|
No status from the terminated child process is available
|
|
|
|
because the calling process has asked the system to discard
|
|
|
|
such status by ignoring the signal
|
|
|
|
.Dv SIGCHLD
|
|
|
|
or setting the flag
|
|
|
|
.Dv SA_NOCLDWAIT
|
|
|
|
for that signal.
|
1994-05-27 05:00:24 +00:00
|
|
|
.It Bq Er EFAULT
|
|
|
|
The
|
|
|
|
.Fa status
|
|
|
|
or
|
|
|
|
.Fa rusage
|
2002-12-19 09:40:28 +00:00
|
|
|
argument points to an illegal address.
|
1994-05-27 05:00:24 +00:00
|
|
|
(May not be detected before exit of a child process.)
|
|
|
|
.It Bq Er EINTR
|
|
|
|
The call was interrupted by a caught signal,
|
|
|
|
or the signal did not have the
|
|
|
|
.Dv SA_RESTART
|
|
|
|
flag set.
|
2012-11-13 12:56:42 +00:00
|
|
|
.It Bq Er EINVAL
|
|
|
|
An invalid value was specified for
|
|
|
|
.Fa options ,
|
|
|
|
or
|
|
|
|
.Fa idtype
|
|
|
|
and
|
|
|
|
.Fa id
|
|
|
|
do not specify a valid set of processes.
|
1994-05-27 05:00:24 +00:00
|
|
|
.El
|
2005-01-20 09:17:07 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr _exit 2 ,
|
|
|
|
.Xr ptrace 2 ,
|
|
|
|
.Xr sigaction 2 ,
|
2005-12-13 13:43:35 +00:00
|
|
|
.Xr exit 3 ,
|
|
|
|
.Xr siginfo 3
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh STANDARDS
|
|
|
|
The
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait ,
|
|
|
|
.Fn waitpid ,
|
1994-05-27 05:00:24 +00:00
|
|
|
and
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn waitid
|
1994-05-27 05:00:24 +00:00
|
|
|
functions are defined by POSIX;
|
2012-11-13 12:56:42 +00:00
|
|
|
.Fn wait6 ,
|
|
|
|
.Fn wait4 ,
|
1994-05-27 05:00:24 +00:00
|
|
|
and
|
|
|
|
.Fn wait3
|
|
|
|
are not specified by POSIX.
|
|
|
|
The
|
|
|
|
.Fn WCOREDUMP
|
|
|
|
macro
|
2013-09-07 11:41:52 +00:00
|
|
|
is an extension to the POSIX interface.
|
|
|
|
.Pp
|
|
|
|
The ability to use the
|
|
|
|
.Dv WNOWAIT
|
|
|
|
flag with
|
|
|
|
.Fn waitpid
|
|
|
|
is an extension;
|
|
|
|
.Tn POSIX
|
|
|
|
only permits this flag with
|
|
|
|
.Fn waitid .
|
1994-05-27 05:00:24 +00:00
|
|
|
.Sh HISTORY
|
2002-12-18 09:22:32 +00:00
|
|
|
The
|
1996-08-22 23:31:07 +00:00
|
|
|
.Fn wait
|
2002-12-18 09:22:32 +00:00
|
|
|
function appeared in
|
1996-08-22 23:31:07 +00:00
|
|
|
.At v6 .
|