Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
|
||||
$buffer = 1;
|
||||
$pids = [];
|
||||
|
||||
for ($i = 1; $i < $argc; $i++) {
|
||||
$pid = pcntl_fork();
|
||||
if ($pid < 0) {
|
||||
die("failed to start child process");
|
||||
}
|
||||
|
||||
if ($pid === 0) {
|
||||
sleep($argv[$i] + $buffer);
|
||||
echo $argv[$i] . "\n";
|
||||
exit();
|
||||
}
|
||||
|
||||
$pids[] = $pid;
|
||||
}
|
||||
|
||||
foreach ($pids as $pid) {
|
||||
pcntl_waitpid($pid, $status);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue