Lines Matching full:child
49 wait \- wait for child process to stop or terminate
63 status information for one of its terminated child processes is available, or
72 If \fBwait()\fR returns because the status of a child process is available, it
73 returns the process \fBID\fR of the child process. If the calling process
74 specified a non-zero value for \fIstat_loc\fR, the status of the child process
84 If the child process terminated due to an \fB_exit()\fR call, the low order 8
86 order 7 bits of the argument that the child process passed to \fB_exit()\fR;
93 If the child process terminated due to a signal, the high order 8 bits of
101 One instance of a \fBSIGCHLD\fR signal is queued for each child process whose
102 status has changed. If \fBwait()\fR returns because the status of a child
104 process ID of that child process is discarded. Any other pending \fBSIGCHLD\fR
114 If a parent process terminates without waiting for its child processes to
115 terminate, the parent process \fBID\fR of each child process is set to 1, with
116 the initialization process inheriting the child processes; see \fBIntro\fR(2).
120 When \fBwait()\fR returns due to a terminated child process, the process
121 \fBID\fR of the child is returned to the calling process. Otherwise,
133 The calling process has no existing unwaited-for child processes.
148 Since \fBwait()\fR blocks on a stopped child, a calling process wanting to see