function pcntl fork


pcntl_forkPodręcznik PHPPoprzedniNastępnypcntl_fork (PHP 4 >= 4.1.0)pcntl_fork -- Forks the currently running processDescriptionint pcntl_fork ( void) The pcntl_fork() function creates a child process that differs from the parent process only in it's PID and PPID. Please see your system's fork(2) man page for specific details as to how fork works on your system. 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. Przykład 1. pcntl_fork() Example<?php $pid = pcntl_fork(); if ($pid == -1) { die("could not fork"); } else if ($pid) { // we are the parent } else { // we are the child } ?> See also pcntl_waitpid() and pcntl_signal(). PoprzedniSpis treściNastępnypcntl_execPoczątek rozdziałupcntl_signal

Wyszukiwarka

Podobne podstrony:
function pcntl wifstopped
function pcntl wstopsig
function pcntl wtermsig
function pcntl wifexited
function pcntl waitpid
function pcntl wifsignaled
function pcntl exec
function pcntl signal
function pcntl wexitstatus
function fdf next field name
function ccvs void
function mysql error
function mcal event set end
function mcrypt cbc

więcej podobnych podstron