Copyright (C) 2000-2012 |
Manpages WAIT4Section: Linux Programmer's Manual (2 )Updated: 1997-06-23 Index Return to Main Contents NAMEwait3, wait4 - wait for process termination, BSD styleSYNOPSIS#define _USE_BSD #include <sys/types.h> #include <sys/time.h> #include <sys/resource.h> #include <sys/wait.h> pid_t wait3(int *status, int options, struct rusage *rusage) pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage) DESCRIPTIONThe wait3 function suspends execution of the current process until a child has exited, or until a signal is delivered whose action is to terminate the current process or to call a signal handling function. If a child has already exited by the time of the call (a so-called "zombie" process), the function returns immediately. Any system resources used by the child are freed.The wait4 function suspends execution of the current process until a child as specified by the pid argument has exited, or until a signal is delivered whose action is to terminate the current process or to call a signal handling function. If a child as requested by pid has already exited by the time of the call (a so-called "zombie" process), the function returns immediately. Any system resources used by the child are freed. The value of pid can be one of:
The value of options is a bitwise OR of zero or more of the following constants:
If status is not NULL, wait3 or wait4 store status information in the location pointed to by status. This status can be evaluated with the following macros (these macros take the stat buffer (an int) as an argument - not a pointer to the buffer!):
If rusage is not NULL, the struct rusage as defined in <sys/resource.h> it points to will be filled with accounting information. See getrusage(2) for details. RETURN VALUEThe process ID of the child which exited, -1 on error (in particular, when no unwaited-for child processes of the specified kind exist) or zero if WNOHANG was used and no child was available yet. In the latter two cases errno will be set appropriately.ERRORS
NOTEIncluding <sys/time.h> is not required these days, but increases portability. (Indeed, <sys/resource.h> defines the rusage structure with fields of type struct timeval defined in <sys/time.h>.)CONFORMING TOSVr4, POSIX.1SEE ALSOsignal(2), getrusage(2), wait(2), signal(7)
IndexThis document was created by man2html, using the manual pages. Time: 15:49:19 GMT, January 15, 2025 |