Singnals Flashcards
Signal 1
HUP
Hangup
Signal 2
INT
Keyboard interrupt
Signal 3
QUIT
Keyboard quit
Signal 9
Kill
Kill, unblockable
Signal 15
Terminate
Default
Signal 18
CONT
Continue
Signal 19
STOP
Stop, unblockable
Signal 20
TSTP
Keyboard stop
HUP
Used to report termination of the controlling process of a terminal. Also used to request process reinitialization without termination
INT
Interrupt.
Causes program termination.
Can be blocked or handled.
Spent by sending the interrupt key combination(Ctrl+C)
QUIT
Similar to AUSGIBT, but also produces a process dump at termination. Sent by pressing the QUIT key combination (Ctrl+)
KILL
Causes abrupt program termination. Cannot be blocked, ignored, or handled. Always fatal.
TERM
Terminate
Causes a program to terminate. It can be blocked, ignored, or handled.
The polite way to terminate a process, allows for self cleanup.
CONT
Continue
Sent to a process to resume if stopped. Cannot be blocked. Even if handled, always resumes the porcess
STOP
Stop, unblockable
Suspends the process. Cannot be blocked or handled