pub const SIGKILL: Code;
Expand description
The SIGKILL
signal is sent to a process to cause it to terminate
immediately. In contrast to SIGTERM
and SIGINT
, this signal cannot
be caught or ignored, and the receiving process cannot perform any
clean-up upon receiving this signal.