Defines a list of posix signals that will not be propagated to the process.
list<\SIG*> $signals:
public function setIgnoredSignals(array $signals) : void { if ($this->isRunning()) { throw new RuntimeException('Setting ignored signals while the process is running is not possible.'); } $this->ignoredSignals = $signals; }