8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3head / wait.h.3head
bloba8a20e3d28df0c2eedca204ed753e5b81d991d03
1 '\" te
2 .\" Copyright 1989 AT&T. Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved. Portions Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
3 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
4 .\" http://www.opengroup.org/bookstore/.
5 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
6 .\"  This notice shall appear on any product containing this material.
7 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
8 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
9 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
10 .TH WAIT.H 3HEAD "Sep 10, 2004"
11 .SH NAME
12 wait.h, wait \- wait status
13 .SH SYNOPSIS
14 .LP
15 .nf
16 \fB#include <sys/wait.h>\fR
17 .fi
19 .SH DESCRIPTION
20 .sp
21 .LP
22 When a process waits for status from its children using either the
23 \fBwait\fR(3C) or \fBwaitpid\fR(3C) function, the status returned can be
24 evaluated with the following macros, defined in <\fBsys/wait.h\fR>. These
25 macros evaluate to integral expressions. The \fIstat\fR argument to these
26 macros is the integer value returned from \fBwait()\fR or \fBwaitpid()\fR.
27 .sp
28 .ne 2
29 .na
30 \fB\fBWCOREDUMP\fR(\fIstat\fR)\fR
31 .ad
32 .RS 22n
33 If the value of \fBWIFSIGNALED\fR (\fIstat\fR) is non-zero, this macro
34 evaluates to a non-zero value if a core image of the terminated child was
35 created.
36 .RE
38 .sp
39 .ne 2
40 .na
41 \fB\fBWEXITSTATUS\fR(\fIstat\fR)\fR
42 .ad
43 .RS 22n
44 If the value of  \fBWIFEXITED(\fR\fIstat\fR\fB)\fR is non-zero, this macro
45 evaluates to the exit code that the child process passed to  \fB_exit()\fR (see
46 \fBexit\fR(2)) or \fBexit\fR(3C), or the value that the child process returned
47 from \fBmain\fR.
48 .RE
50 .sp
51 .ne 2
52 .na
53 \fB\fBWIFCONTINUED\fR(\fIstat\fR)\fR
54 .ad
55 .RS 22n
56 Evaluates to a non-zero value if status was returned for a child process that
57 has continued.
58 .RE
60 .sp
61 .ne 2
62 .na
63 \fB\fBWIFEXITED\fR(\fIstat\fR)\fR
64 .ad
65 .RS 22n
66 Evaluates to a non-zero value if status was returned for a child process that
67 terminated normally.
68 .RE
70 .sp
71 .ne 2
72 .na
73 \fB\fBWIFSIGNALED\fR(\fIstat\fR)\fR
74 .ad
75 .RS 22n
76 Evaluates to a non-zero value if status was returned for a child process that
77 terminated due to the receipt of a signal.
78 .RE
80 .sp
81 .ne 2
82 .na
83 \fB\fBWIFSTOPPED\fR(\fIstat\fR)\fR
84 .ad
85 .RS 22n
86 Evaluates to a non-zero value if status was returned for a child process that
87 is currently stopped.
88 .RE
90 .sp
91 .ne 2
92 .na
93 \fB\fBWSTOPSIG\fR(\fIstat\fR)\fR
94 .ad
95 .RS 22n
96 If the value of \fBWIFSTOPPED(\fR\fIstat\fR\fB)\fR is non-zero, this macro
97 evaluates to the number of the signal that caused the child process to stop.
98 .RE
101 .ne 2
103 \fB\fBWTERMSIG\fR(\fIstat\fR)\fR
105 .RS 22n
106 If the value of  \fBWIFSIGNALED\fR(\fIstat\fR) is non-zero, this macro
107 evaluates to the number of the signal that caused the termination of the child
108 process.
113 The <\fBsys/wait.h\fR> header defines the symbolic constants listed below for
114 use with \fBwaitpid\fR(3C).
116 .ne 2
118 \fB\fBWNOHANG\fR\fR
120 .RS 13n
121 Do not hang if no status is available; return immediately.
125 .ne 2
127 \fB\fBWUNTRACED\fR\fR
129 .RS 13n
130 Report status of stopped child process.
135 The symbolic constants listed below are defined as possible values for the
136 \fIoptions\fR argument to \fBwaitid\fR(2).
138 .ne 2
140 \fB\fBWEXITED\fR\fR
142 .RS 14n
143 Wait for processes that have exited.
147 .ne 2
149 \fB\fBWSTOPPED\fR\fR
151 .RS 14n
152 Status is returned for any child that has stopped upon receipt of a signal.
156 .ne 2
158 \fB\fBWCONTINUED\fR\fR
160 .RS 14n
161 Status is returned for any child that was stopped and has been continued.
165 .ne 2
167 \fB\fBWNOHANG\fR\fR
169 .RS 14n
170 Return immediately if there are no children to wait for.
174 .ne 2
176 \fB\fBWNOWAIT\fR\fR
178 .RS 14n
179 Keep the process whose status is returned in \fBinfop\fR in a waitable state.
184 The type \fBidtype_t\fR is defined as an enumeration type whose possible values
185 include the following:
187 .in +2
189 P_ALL
190 P_PID
191 P_PGID
193 .in -2
197 The \fBid_t\fR and \fBpid_t\fR types are defined as described in
198 <\fBsys/types.h\fR>.
201 The \fBsiginfo_t\fR type is defined as described in <\fBsignal.h\fR>.
204 The \fBrusage\fR structure is defined as described in <\fBsys/resource.h\fR>.
207 Inclusion of the <\fBsys/wait.h\fR> header can also make visible all symbols
208 from <\fBsignal.h\fR> and <\fBsys/resource.h\fR>.
209 .SH ATTRIBUTES
212 See \fBattributes\fR(5) for descriptions of the following attributes:
217 box;
218 c | c
219 l | l .
220 ATTRIBUTE TYPE  ATTRIBUTE VALUE
222 Interface Stability     Standard
225 .SH SEE ALSO
228 \fBexit\fR(2), \fBwaitid\fR(2), \fBexit\fR(3C), \fBwait\fR(3C),
229 \fBwaitpid\fR(3C),\fBattributes\fR(5), \fBstandards\fR(5)