* sigproc.cc (wait_sig): Allow SIGCONT when stopped.

This commit is contained in:
Christopher Faylor
2001-01-10 13:53:38 +00:00
parent c0e5a443da
commit 7416e1d2f6
2 changed files with 5 additions and 1 deletions

View File

@@ -1150,7 +1150,7 @@ wait_sig (VOID *)
if (sig > 0 && sig != SIGKILL && sig != SIGSTOP &&
(sigismember (& myself->getsigmask (), sig) ||
myself->process_state & PID_STOPPED))
(sig != SIGCONT && myself->process_state & PID_STOPPED)))
{
sigproc_printf ("sig %d blocked", sig);
break;