Enum UnixSignal
Represents standard Unix signal numbers, grouped by category.
public enum UnixSignal
Fields
SIGABRT = 6Abort signal from abort() (SIGABRT).
SIGALRM = 14Alarm clock (SIGALRM).
SIGBUS = 7Bus error (SIGBUS).
SIGCHLD = 17Child stopped or terminated (SIGCHLD).
SIGCONT = 18Continue executing, if stopped (SIGCONT).
SIGFPE = 8Floating-point exception (SIGFPE).
SIGHUP = 1Hang up detected on controlling terminal or death of controlling process (SIGHUP).
SIGILL = 4Illegal instruction (SIGILL).
SIGINT = 2Interrupt from keyboard (SIGINT).
SIGKILL = 9Kills the process immediately (SIGKILL). Cannot be caught or ignored.
SIGPIPE = 13Broken pipe (SIGPIPE).
SIGPROF = 27Profiling timer expired (SIGPROF).
SIGPWR = 30Power failure (SIGPWR).
SIGQUIT = 3Quit from keyboard (SIGQUIT).
SIGRTMIN = 34Real-time timer expired (SIGRTMIN and up are real-time).
SIGSEGV = 11Invalid memory reference (SIGSEGV).
SIGSTOP = 19Stop process (SIGSTOP). Cannot be caught or ignored.
SIGTERM = 15Termination signal (SIGTERM).
SIGTRAP = 5Trace/breakpoint trap (SIGTRAP).
SIGTSTP = 20Terminal stop signal (SIGTSTP). Typically sent by Ctrl+Z.
SIGTTIN = 21Background process read from terminal (SIGTTIN).
SIGTTOU = 22Background process write to terminal (SIGTTOU).
SIGUSR1 = 10User-defined signal 1 (SIGUSR1).
SIGUSR2 = 12User-defined signal 2 (SIGUSR2).
SIGVTALRM = 26Virtual alarm clock (SIGVTALRM).
SIGWINCH = 28Window resize (SIGWINCH).
SIGXCPU = 24Software termination signal (SIGXCPU - CPU time limit exceeded).
SIGXFSZ = 25File size limit exceeded (SIGXFSZ).