A process wants to wait for its child.
pid_t waitpid(pid_t pid, int *status, int options);- Process wants to block when no child has terminated
- Option is 0, waitpid blocks like C Wait
A process wants to wait for its child.
pid_t waitpid(pid_t pid, int *status, int options);