public function Process::getStopSignal

Returns the number of the signal that caused the child process to stop its execution.

It is only meaningful if hasBeenStopped() returns true.

@api

Return value

integer

File

drupal/core/vendor/symfony/process/Symfony/Component/Process/Process.php, line 687

Class

Process
Process is a thin wrapper around proc_* functions to ease start independent PHP processes.

Namespace

Symfony\Component\Process

Code

public function getStopSignal() {
  $this
    ->updateStatus();
  return $this->processInformation['stopsig'];
}