保護者/労働者の取り決めが進行中です。親はワーカー PID を配列に保持し、次のループでそれらがまだ生きていることを常にチェックします。
// $workers is an array of PIDs
foreach ($workers as $workerID => $pid) {
// Check if this worker still exists as a process
pcntl_waitpid($pid, $status, WNOHANG|WUNTRACED);
// If the worker exited normally, stop tracking it
if (pcntl_wifexited($status)) {
$logger->info("Worker $workerID exited normally");
array_splice($workers, $workerID, 1);
}
// If it has a session ID, then it's still living
if (posix_getsid($pid))⋅
$living[] = $pid;
}
// $dead is the difference between workers we've started
// and those that are still running
$dead = array_diff($workers, $living);
問題は、pcntl_waitpid()
常に$status
0 に設定されていることです。そのため、このループが最初に実行されると、親は、まだ実行されているにもかかわらず、すべての子が正常に終了したと見なします。私はpcntl_waitpid()
間違って使用していますか、それともそうでないことを期待していますか?