SIGCONT
From Wikipedia, the free encyclopedia
|
|
It has been suggested that this article or section be merged into Unix signal . (Discuss) Proposed since January 2012. |
| This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (December 2009) |
| Description | Continue executing, if stopped |
|---|---|
| Default action | Continue the process, if it is stopped; otherwise ignore the signal |
| SA_SIGINFO macros | |
|
None |
|
On POSIX-compliant platforms, SIGCONT is the signal sent to restart a process previously paused by the SIGSTOP or SIGTSTP signal. The symbolic constant for SIGCONT is defined in the header file signal.h. Symbolic signal names are used because signal numbers can vary across platforms.
[edit] Etymology
SIG is a common prefix for signal names. CONT is an abbreviation for continue.
[edit] Usage
When SIGSTOP or SIGTSTP is sent to a process, the usual behaviour is to pause that process in its current state. The process will only resume execution if it is sent the SIGCONT signal. SIGSTOP and SIGCONT are used for job control in the Unix shell, among other purposes.
|
||||||||