Skip to content
Latchkey

SIGSTOP (Signal 19): Meaning, Exit Code 147 & Fix

SIGSTOP is Unix signal 19. A process terminated by it reports exit code 147 (128 + 19).

SIGSTOP pauses a process and cannot be caught or ignored. When it kills a process, the shell reports exit code 147 - the 128 + signal-number convention.

What it means

The process was suspended (not terminated). In CI this can make a job appear hung.

When it happens in CI

  • A debugger or job-control action stopped the process.
  • A container runtime paused the task.

How to handle it

Resume with SIGCONT, or avoid whatever stopped it; a stopped process under a step timeout will eventually be killed.

Related guides

Run this faster and cheaper on Latchkey managed runners. Start free →