Lines Matching refs:child_id
596 pid_t child_id; in PHP_FUNCTION() local
615 child_id = wait4((pid_t) pid, &status, options, &rusage); in PHP_FUNCTION()
617 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
620 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
623 if (child_id < 0) { in PHP_FUNCTION()
628 if (child_id > 0) { in PHP_FUNCTION()
635 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()
645 pid_t child_id; in PHP_FUNCTION() local
663 child_id = wait3(&status, options, &rusage); in PHP_FUNCTION()
665 child_id = wait3(&status, options, NULL); in PHP_FUNCTION()
667 child_id = wait(&status); in PHP_FUNCTION()
670 child_id = wait(&status); in PHP_FUNCTION()
672 if (child_id < 0) { in PHP_FUNCTION()
677 if (child_id > 0) { in PHP_FUNCTION()
684 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()