I'm running this PHP script as a daemon process from command line. It forks few child processes using pcntl_fork() and waits till all child processes are exited.
I'd like to kill all the processes by killing the parent process. I tried to kill -15 the parent process, but it's not receiving the signal. Am I doing anything wrong?
global $child_pids;
declare(ticks = 1);
trace("Installing signal handler");
pcntl_signal(SIGTERM, "sig_handler");
pcntl_signal(SIGHUP, "sig_handler");
pcntl_signal(SIGINT, "sig_handler");
pcntl_signal(SIGUSR1, "sig_handler");
foreach ($accounts as $account)
{
$pid = pcntl_fork();
if ($pid == -1) {
die('could not fork');
} else if ($pid) {
trace('Parent: '.$pid);
$child_pids[] = $pid;
continue;
} else {
//we are the child
trace('Child: '.$pid);
//Listen to Twitter Streaming API here..
break;
}
}
if ($pid) //if its parent
{
trace('Waiting for child processes');
foreach ($child_pids as $p)
{
trace('Waiting for: '.$p);
$o = WNOHANG;
while (0==pcntl_waitpid($p, $o))
{
sleep(5);
}
trace("$p exited");
}
trace('All child processes exited. Parent exiting');
}
function sig_handler($signo)
{
trace('Received signal: '.$signo);
if ($signo == SIGTERM || $signo == SIGHUP || $signo == SIGINT)
{
global $child_pids;
// If we are being restarted or killed, quit all children
// Send the same signal to the children which we recieved
foreach($child_pids as $p){ posix_kill($p,$signo); }
}
}