-
-
Notifications
You must be signed in to change notification settings - Fork 164
Closed
Labels
Description
Could be a good idea?
- proc_open returns false on error
- proc_close returns -1 on error
Note: proc_nice exists:
Lines 95 to 102 in 3a6e43b
function proc_nice(int $priority): void | |
{ | |
error_clear_last(); | |
$safeResult = \proc_nice($priority); | |
if ($safeResult === false) { | |
throw ExecException::createFromPhpError(); | |
} | |
} |