Linux Signals: Difference between revisions
Jump to navigation
Jump to search
Line 52: | Line 52: | ||
POSIX. Stop executing. The signal cannot be caught or ignored. | POSIX. Stop executing. The signal cannot be caught or ignored. | ||
Also see: | |||
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;"> | |||
:[[JGroups Troubleshooting Techniques#Suspend_JVM_Execution|Suspending JVM Execution]] | |||
</blockquote> | |||
==SIGTSTP (20)== | ==SIGTSTP (20)== |
Revision as of 01:30, 5 March 2016
Internal
Signals
SIGHUP (1)
POSIX. Hangup.
SIGINT (2)
SIGQUIT (3)
SIGILL (4)
SIGTRAP (5)
SIGFPE (8)
SIGKILL (9)
POSIX. Kill the process. The signal cannot be caught or ignored.
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: