6. Signals

A signal is a notification to a process that something has happened.

Why we have signals

They are software interrupts and they have lots of uses:


  • A user can type one of the special terminal characters (Ctrl-C) or (Ctrl-Z) to kill, interrupt or suspend processes

  • Hardware issues can occur and the kernel wants to notify the process

  • Software issues can occur and the kernel wants to notify the process

  • They are basically ways processes can communicate

Signal process

When a signal is generated by some event, it's then delivered to a process, it's considered in a pending state until it's delivered. When the process is ran, the signal will be delivered. However, processes have signal masks and they can set signal delivery to be blocked if specified. When a signal is delivered, a process can do a multitude of things:


  • Ignore the signal

  • "Catch" the signal and perform a specific handler routine

  • Process can be terminated, as opposed to the normal exit system call

  • Block the signal, depending on the signal mask

Common signals

Each signal is defined by integers with symbolic names that are in the form of SIGxxx. Some of the most common signals are:


  • SIGHUP or HUP or 1: Hangup

  • SIGINT or INT or 2: Interrupt

  • SIGKILL or KILL or 9: Kill

  • SIGSEGV or SEGV or 11: Segmentation fault

  • SIGTERM or TERM or 15: Software termination

  • SIGSTOP or STOP: Stop

Numbers can vary with signals so they are usually referred by their names.

Some signals are unblockable, one example is the SIGKILL signal. The KILL signal destroys the process.

Exercises

No exercises for this lesson.

Quiz

What signal is unblockable?