Linux Signals: Difference between revisions
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
==SIGKILL (9)== | ==SIGKILL (9)== | ||
POSIX. Kill the process. The signal cannot be caught or ignored. | POSIX. Kill the process. The signal cannot be caught or ignored. Guaranteed to be present on all systems. | ||
==SIGUSR1 (10)== | ==SIGUSR1 (10)== |
Revision as of 18:13, 21 April 2016
Internal
Signals
SIGHUP (1)
POSIX signal. Hangup.
Hangup is the signal that is sent to the process when the terminal closes on a foreground process.
SIGINT (2)
Sends the process an interrupt. Guaranteed to be present on all systems.
SIGQUIT (3)
SIGILL (4)
SIGTRAP (5)
SIGFPE (8)
SIGKILL (9)
POSIX. Kill the process. The signal cannot be caught or ignored. Guaranteed to be present on all systems.
SIGUSR1 (10)
SIGSEGV (11)
SIGUSR2 (12)
SIGPIPE (13)
SIGALRM (14)
SIGTERM (15)
SIGSTKFLT (16)
SIGCHLD (17)
SIGCONT (18)
POSIX. Continue executing, if stopped.
Also see:
SIGSTOP (19)
POSIX. Stop executing. The signal cannot be caught or ignored.
Also see: