Lines Matching refs:child_id
550 pid_t child_id; in PHP_FUNCTION() local
569 child_id = wait4((pid_t) pid, &status, options, &rusage); in PHP_FUNCTION()
571 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
574 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
577 if (child_id < 0) { in PHP_FUNCTION()
582 if (child_id > 0) { in PHP_FUNCTION()
589 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()
599 pid_t child_id; in PHP_FUNCTION() local
617 child_id = wait3(&status, options, &rusage); in PHP_FUNCTION()
619 child_id = wait3(&status, options, NULL); in PHP_FUNCTION()
621 child_id = wait(&status); in PHP_FUNCTION()
624 child_id = wait(&status); in PHP_FUNCTION()
626 if (child_id < 0) { in PHP_FUNCTION()
631 if (child_id > 0) { in PHP_FUNCTION()
638 RETURN_LONG((zend_long) child_id); in PHP_FUNCTION()