Signal
About system calls, SIGINT, SIGTERM, SIGKILL
Definition:
System calls: communication chanel between user space program and kernel
Signals: a different channel, used for inter-process communication
Signals don't carry any agrgument, they are self explanatory by their name
Some signals identified by a number, ie
SIGKILL
(9)That's why we use
kill -9 <PID>
to kill a process, because the kill command will send a defined signal to a process with a given identity<PID>
when we run
kill -9 <PID>
command, that process is not terminate itself, instead we're telling that OS to stop running the program, no matter what the program is doing
Some useful signals
SIGINT
: is the program interrupt signal. When user pressesCTRL+C
, the terminal emulator sends this signal to the foreground process, it will terminate process, but it can be caught or ignored, it a graceful shutdownSIGTERM
: is the termination signal. It used to cause process termination, this signal can be blocked, handled and ignored. It is the normal way to ask a process to terminate. Thekill
command generates SIGTERM by defaultSIGKILL
: is an immediate termination signal. It cannot be caught or ignored by the process, because when we send aSIGKILL
to a proces, we remove any chance for that process to do a tidy cleanup and shutdown.
For example, when a process does not die by using Ctrl+C
(SIGINT), we should use the command kill -9
on that process PID
SIGSTOP
: is a process suspend signal, which tells the OS to stop/suspend a process. This signal cannot be caught or ignored. To resume the process, use SIGCONT signal to continueCtrl+C
: The interrupt signal, sendsSIGINT
to the job running in the foreground.
When a process is in a limbo state it is reasonable to send the process the SIGKILL
signal, which can be invoked by running the kill command with the -9 flag. Unlike SIGTERM
the SIGKILL
signal cannot be captured by the process and thus it cannot be ignored. The SIGKILL
signal is handled outside of the process completely, and is used to stop the process immediately. The problem with using SIGKILL
is that it does not allow an application to close its open files or database connections cleanly and over time could cause other issues; therefor it is generally better to reserve the SIGKILL
signal as a last resort.
Reference & Read more
ftp://ftp.gnu.org/old-gnu/Manuals/glibc-2.2.3/html_chapter/libc_24.html
Last updated