Lines Matching refs:pcntl_rfork
2 Test function pcntl_rfork() with wrong flags
8 if (!function_exists('pcntl_rfork')) die('skip pcntl_rfork unavailable');
14 $pid = pcntl_rfork(32);
20 $pid = pcntl_rfork(16384);
26 $pid = pcntl_rfork(RFFDG|RFCFDG);
33 ValueError: pcntl_rfork(): Argument #1 ($flags) must not include RFMEM value, not allowed within th…
35 #0 %s: pcntl_rfork(32)
38 ValueError: pcntl_rfork(): Argument #1 ($flags) must not include RFSIGSHARE value, not allowed with…
40 #0 %s: pcntl_rfork(16384)
43 ValueError: pcntl_rfork(): Argument #1 ($flags) must not include both RFFDG and RFCFDG, because the…
45 #0 %s: pcntl_rfork(4100)