Spork\SharedMemory::signal PHP Метод

signal() публичный Метод

Sends a signal to the other process.
public signal ( $signal )
    public function signal($signal)
    {
        $pid = null === $this->ppid ? $this->pid : $this->ppid;
        return posix_kill($pid, $signal);
    }