PHPDaemon\Thread\Master::sigchld PHP Method

sigchld() protected method

Handler for the SIGCHLD (child is dead) signal in master process.
protected sigchld ( ) : void
return void
    protected function sigchld()
    {
        if (Daemon::$config->logsignals->value) {
            $this->log('Caught SIGCHLD.');
        }
        parent::sigchld();
    }