Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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); } 
     }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.