sigchld() protected method

Called when the signal SIGCHLD caught
protected sigchld ( ) : void
return void
Example #1
0
 /**
  * Handler for the SIGCHLD (child is dead) signal in master process.
  * @return void
  */
 protected function sigchld()
 {
     if (Daemon::$config->logsignals->value) {
         $this->log('Caught SIGCHLD.');
     }
     parent::sigchld();
 }