Lines Matching refs:child_id
663 pid_t child_id; in PHP_FUNCTION() local
684 child_id = wait4((pid_t) pid, &status, options, &rusage); in PHP_FUNCTION()
686 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
689 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
692 if (child_id < 0) { in PHP_FUNCTION()
697 if (child_id > 0) { in PHP_FUNCTION()
705 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()
716 pid_t child_id; in PHP_FUNCTION() local
736 child_id = wait3(&status, options, &rusage); in PHP_FUNCTION()
738 child_id = wait3(&status, options, NULL); in PHP_FUNCTION()
740 child_id = wait(&status); in PHP_FUNCTION()
743 child_id = wait(&status); in PHP_FUNCTION()
745 if (child_id < 0) { in PHP_FUNCTION()
750 if (child_id > 0) { in PHP_FUNCTION()
758 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()