multithreading.php
changeset 76 487a16c7117c
parent 68 32f6e2ee15ab
equal deleted inserted replaced
75:2f39cb7f54c4 76:487a16c7117c
   311     if ( !$this->is_child() && isset($command['propagate']) && $command['propagate'] === true )
   311     if ( !$this->is_child() && isset($command['propagate']) && $command['propagate'] === true )
   312     {
   312     {
   313       $this->ipc_send($command);
   313       $this->ipc_send($command);
   314     }
   314     }
   315     // we're good
   315     // we're good
   316     @call_user_func($this->ipc_actions[$command['action']], $command, $this);
   316     call_user_func($this->ipc_actions[$command['action']], $command, $this);
   317   }
   317   }
   318   
   318   
   319   /**
   319   /**
   320    * Kills all child processes.
   320    * Kills all child processes.
   321    * @access public
   321    * @access public