The Linux Programming Interface
by Michael Kerrisk
by Michael Kerrisk
Signals This summary represents my study of Chapter 20 of The Linux Programming Interface by Michael Kerrisk. It is intentionally brief and is not a replacement for the original work, which I encourage reading. Introduction A signal is a notification to a process that an event has happened. Signals are also described as “software interrupts” Any process with sufficient permissions can send signals to another process. Signals are defined in <signal.h> ...