Home
last modified time | relevance | path

Searched refs:child_id (Results 1 – 1 of 1) sorted by relevance

/PHP-5.6/ext/pcntl/
H A Dpcntl.c575 pid_t child_id; in PHP_FUNCTION() local
584 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
586 if (child_id < 0) { in PHP_FUNCTION()
592 RETURN_LONG((long) child_id); in PHP_FUNCTION()
603 pid_t child_id; in PHP_FUNCTION() local
613 child_id = wait3(&status, options, NULL); in PHP_FUNCTION()
616 child_id = wait(&status); in PHP_FUNCTION()
619 child_id = wait(&status); in PHP_FUNCTION()
621 if (child_id < 0) { in PHP_FUNCTION()
627 RETURN_LONG((long) child_id); in PHP_FUNCTION()

Completed in 8 milliseconds