signal.h is a C header file used for interacting with signals in POSIX systems.

Functions

  • int kill(pid_t pid, int sig) — allows us to send a signal to a process or process group. See this page.