SIGCONT
SIGCONT is a signal defined by the POSIX standard for Unix-like systems. It is used to resume a process that has been stopped by a job-control signal such as SIGSTOP, SIGTSTP, SIGTTIN, or SIGTTOU. The default action of SIGCONT is to continue the process’s execution. If the process is already running, the signal typically has no effect. A process may install a handler for SIGCONT or ignore the signal; if a handler is present, it will run upon receipt, and if the signal is ignored, the process still resumes execution because the primary effect of the signal is to continue.
SIGCONT can be delivered to a single process or to an entire process group. It is commonly
In the context of job control, SIGCONT is used to resume stopped jobs. When a user suspends
Related signals include SIGSTOP, SIGTSTP, SIGTTIN, and SIGTTOU, which are associated with stopping processes or related