The list below documents the signals specified in the
Single Unix Specification Version 5. All signals are defined as macro constants in the header file. The name of the macro constant consists of a ""
prefix followed by a mnemonic name for the signal. A process can define
how to handle incoming POSIX signals. If a process does not define a behaviour for a signal, then the
default handler for that signal is being used. The table below lists some default actions for POSIX-compliant UNIX systems, such as
FreeBSD,
OpenBSD and
Linux. ;
Portable number: : For most signals the corresponding signal number is implementation-defined. This column lists the numbers specified in the POSIX standard. ;
Actions explained: :
Terminate Abnormal termination of the process. The process is terminated with all the consequences of except that the status made available to and indicates abnormal termination by the specified signal. :
Terminate (core dump) Abnormal termination of the process. Additionally, implementation-defined abnormal termination actions, such as creation of a core file, may occur. :
Ignore Ignore the signal. :
Stop Stop (or suspend) the process. :
Continue Continue the process, if it is stopped; otherwise, ignore the signal. ; and : The signal is sent to a process to tell it to
abort, i.e. to terminate. The signal is usually initiated by the process itself when it calls
abort() function of the
C Standard Library, but it can be sent to the process from outside like any other signal. : indicates that the CPU has executed an explicit "trap" instruction (without a defined function), or an unimplemented instruction (when emulation is unavailable). ::
Note: "input/output trap" is a misnomer for any CPU "trap" instruction. The term reflects early usage of such instructions, predominantly to implement I/O functions, but they are not inherently tied to device I/O and may be used for other purposes such as communication between virtual & real hosts. : and are typically the same signal, and receipt of that signal may indicate any of the conditions above. ; , and : The , and signals are sent to a process when the corresponding time limit is reached. The process sets these time limits by calling alarm or setitimer. The time limit for is based on real or clock time; is based on CPU time used by the process; and is based on CPU time used by the process and by the system on its behalf (known as a
profiling timer). On some systems may be used internally by the implementation of the sleep function. ; : The signal is sent to a process when it causes a
bus error. The conditions that lead to the signal being sent are, for example, incorrect memory access alignment or non-existent physical address. ; : The signal is sent to a process when a
child process terminates, is stopped, or resumes after being stopped. One common usage of the signal is to instruct the operating system to clean up the resources used by a child process after its termination without an explicit call to the
wait system call. ; : The signal instructs the operating system to
continue (restart) a process previously paused by the or signal. One important use of this signal is in
job control in the
Unix shell. ; : The signal is sent to a process when an exceptional (but not necessarily erroneous) condition has been detected in the floating-point or integer arithmetic hardware. This may include
division by zero, floating-point underflow or overflow,
integer overflow, an invalid operation or an inexact computation. Behaviour may differ depending on hardware. ; : The signal is sent to a process when its controlling terminal is closed. It was originally designed to notify the process of a
serial line drop (a
hangup). In modern systems, this signal usually means that the controlling
pseudo or virtual terminal has been closed. Many
daemons (who have no controlling terminal) interpret receipt of this signal as a request to reload their configuration files and flush/reopen their logfiles instead of exiting.
nohup is a command to make a command ignore the signal. ; : The signal is sent to a process when it attempts to execute an
illegal, malformed, unknown, or privileged
instruction. ; : The signal is sent to a process by its controlling terminal when a user wishes to
interrupt the process. This is typically initiated by pressing Control-C|, but on some systems, the "
delete" character or "
break" key can be used. ; : The signal is sent to a process to cause it to terminate immediately (
kill). In contrast to and , this signal cannot be caught or ignored, and the receiving process cannot perform any clean-up upon receiving this signal. The following exceptions apply: :*
Zombie processes cannot be killed since they are already dead and waiting for their parent processes to reap them. :* Processes that are in the blocked state will not die until they wake up again. :* The
init process is special: It does not get signals that it does not want to handle, and thus it can ignore SIGKILL. An exception from this rule is while init is
ptraced on Linux. :* An
uninterruptibly sleeping process may not terminate (and free its resources) even when sent . This is one of the few cases in which a UNIX system may have to be rebooted to solve a temporary software problem. : is used as a last resort when terminating processes in most system
shutdown procedures if it does not voluntarily exit in response to . To speed the computer shutdown procedure, Mac OS X 10.6, aka
Snow Leopard, will send to applications that have marked themselves "clean" resulting in faster shutdown times with, presumably, no ill effects. The command has a similar, while dangerous effect, when executed e.g. in Linux; it does not let programs save unsaved data. It has other options, and with none, uses the safer SIGTERM signal. ; : The signal is sent to a process when it attempts to write to a
pipe without a process connected to the other end. ; : The signal is sent when an event occurred on an explicitly watched file descriptor. Using it effectively leads to making
asynchronous I/O requests since the kernel will
poll the descriptor in place of the caller. It provides an alternative to active
polling. ; to : The to signals are intended to be used for user-defined purposes. They are
real-time signals. ; : The signal is sent to a process by its controlling terminal when the user requests that the process
quit and perform a
core dump. ; : The signal is sent to a process when it makes an invalid virtual memory reference, or
segmentation fault, i.e. when it performs a
segmentation
violation. ; : The signal instructs the operating system to
stop a process for later resumption. ; : The signal is sent to a process when it passes a bad argument to a
system call. In practice, this kind of signal is rarely encountered since applications rely on libraries (e.g.
libc) to make the call for them. can be received by applications violating the Linux
Seccomp security rules configured to restrict them. can also be used to emulate foreign system calls, e.g. emulate Windows system calls on Linux. ; : The signal is sent to a process to request its
termination. Unlike the signal, it can be caught and interpreted or ignored by the process. This allows the process to perform nice termination releasing resources and saving state if appropriate. is nearly identical to . ; : The signal is sent to a process by its controlling
terminal to request it to
stop (
terminal
sto
p). It is commonly initiated by the user pressing Ctrl-Z|. Unlike , the process can register a signal handler for, or ignore, the signal. ; and : The and signals are sent to a process when it attempts to read
in or write
out respectively from the
tty while in the
background. Typically, these signals are received only by processes under
job control;
daemons do not have controlling terminals and, therefore, should never receive these signals. ; : The signal is sent to a process when an exception (or
trap) occurs: a condition that a
debugger has requested to be informed of for example, when a particular
function is executed, or when a particular
variable changes value. ; : The signal is sent to a process when a
socket has
urgent or
out-of-band data available to read. ; and : The and signals are sent to a process to indicate
user-defined conditions. ; : The signal is sent to a process when it has used up the
CPU for a duration that
exceeds a certain predetermined user-settable value. The arrival of a signal provides the receiving process a chance to quickly save any intermediate results and to exit gracefully, before it is terminated by the operating system using the signal. ; : The signal is sent to a process when it grows a
file that
exceeds the maximum allowed
size. ; : The signal is sent to a process when its controlling terminal changes its size (a
window
change). ==Miscellaneous signals==