Difference between revisions of "Wait"

From Hackepedia
Jump to navigationJump to search
 
m
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
The wait system calls reaps the [[zombie|zombied]] childs of a process. wait() blocks so you may want to look at waitpid() instead.  Read the [[manual|manpages]] for better explanations.
+
The wait system call reaps the [[zombie|zombied]] childs of a [[process]]. wait() blocks so you may want to look at waitpid() instead.  Read the [[manual|manual page]] for better explanations.

Latest revision as of 18:23, 8 January 2006

The wait system call reaps the zombied childs of a process. wait() blocks so you may want to look at waitpid() instead. Read the manual page for better explanations.