pcntl_wifcontinued
(No version information available, might only be in Git)
pcntl_wifcontinued — Checks whether the child process has continued from a job control stop
Description
Checks whether the child process which caused the return of
pcntl_waitpid() has continued from a job control stop.
This function is only useful if the call to
pcntl_waitpid() was done using the
WCONTINUED option.
Parameters
status-
The
statusparameter is the status parameter supplied to a successful call to pcntl_waitpid().
Return Values
Returns true if the child process which caused the return of
pcntl_waitpid() has continued from a job control stop,
false otherwise.
See Also
- pcntl_waitpid() - Waits on or returns the status of a forked child
- pcntl_wifstopped() - Checks whether the child process is currently stopped
- pcntl_wifexited() - Checks if status code represents a normal exit
- pcntl_wifsignaled() - Checks whether the status code represents a termination due to a signal
+add a note
User Contributed Notes
There are no user contributed notes for this page.