Home
last modified time | relevance | path

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

/PHP-8.0/ext/pcntl/
H A Dpcntl.c1191 zend_bool pid_is_null = 1; in PHP_FUNCTION() local
1194 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!l", &pid, &pid_is_null, &who) == FAILURE) { in PHP_FUNCTION()
1201 pri = getpriority(who, pid_is_null ? getpid() : pid); in PHP_FUNCTION()
1230 zend_bool pid_is_null = 1; in PHP_FUNCTION() local
1233 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l!l", &pri, &pid, &pid_is_null, &who) == FAILURE) { in PHP_FUNCTION()
1237 if (setpriority(who, pid_is_null ? getpid() : pid, pri)) { in PHP_FUNCTION()

Completed in 6 milliseconds