Searched refs:pid_is_null (Results 1 – 1 of 1) sorted by relevance
/PHP-8.1/ext/pcntl/ |
H A D | pcntl.c | 1237 bool pid_is_null = 1; in PHP_FUNCTION() local 1240 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!l", &pid, &pid_is_null, &who) == FAILURE) { in PHP_FUNCTION() 1247 pri = getpriority(who, pid_is_null ? getpid() : pid); in PHP_FUNCTION() 1276 bool pid_is_null = 1; in PHP_FUNCTION() local 1279 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l!l", &pri, &pid, &pid_is_null, &who) == FAILURE) { in PHP_FUNCTION() 1283 if (setpriority(who, pid_is_null ? getpid() : pid, pri)) { in PHP_FUNCTION()
|
Completed in 6 milliseconds