pcntl_rfork
Description
The pcntl_rfork of PCNTL for PHP manipulates process resources.
Only available on BSD systems.
Syntax
pcntl_rfork(
int $flags,
int $signal = 0
): intParameters
flags
The flags parameter determines which resources of the invoking process (parent) are shared by the new process (child) or initialized to their default values.
flags is the logical OR of some subset of:
| Contstant | Description |
|---|---|
| RFPROC | If set a new process is created; otherwise changes affect the current process. |
| RFNOWAIT | If set, the child process will be dissociated from the parent. Upon exit the child will not leave a status for the parent to collect. |
| RFFDG | If set, the invoker's file descriptor table is copied; otherwise the two processes share a single table. |
| RFCFDG | If set, the new process starts with a clean file descriptor table. Is mutually exclusive with RFFDG. |
| RFLINUXTHPN | If set, the kernel will return SIGUSR1 instead of SIGCHILD upon thread exit for the child. This is intended to do Linux clone exit parent notification. |
signal
The signal number.
Return
On success, the PID of the child process is returned in the parent's thread of execution, and a 0 is returned in the child's thread of execution.
On failure, a -1 will be returned in the parent's context, no child process will be created, and a PHP error is raised.
Examples
1 · flags
<? $flags = RFNOWAIT | RFTSIGZMB; $return = pcntl_rfork($flags); echo $return;
2 · signal
<? $flags = RFNOWAIT | RFTSIGZMB; $signal = SIGUSR1; $return = pcntl_rfork($flags, $signal); echo $return;
3 · parent child
<?
$flags = RFNOWAIT | RFTSIGZMB;
$signal = SIGUSR1;
$return = pcntl_rfork($flags, $signal);
if($return > 0)
{
echo "parent: $return";
}
else
{
echo "child: $return";
sleep(2);//as the child does not wait, so we see its pid
}
Links
PCNTL
- pcntl_alarm
- pcntl_async_signals
- pcntl_errno
- pcntl_exec
- pcntl_fork
- pcntl_get_last_error
- pcntl_getpriority
- pcntl_setpriority
- pcntl_signal
- pcntl_signal_dispatch
- pcntl_signal_get_handler
- pcntl_sigprocmask
- pcntl_sigtimedwait
- pcntl_sigwaitinfo
- pcntl_strerror
- pcntl_unshare
- pcntl_wait
- pcntl_waitpid
- pcntl_wexitstatus
- pcntl_wifexited
- pcntl_wifsignaled
- pcntl_wifstopped
- pcntl_wstopsig
- pcntl_wtermsig