* sigproc.cc (wait_sig): Report if not trying to send signal due to queued
signal.
This commit is contained in:
parent
10dcf7e718
commit
27ec638b25
|
@ -1,3 +1,8 @@
|
|||
2004-03-26 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* sigproc.cc (wait_sig): Report if not trying to send signal due to
|
||||
queued signal.
|
||||
|
||||
2004-03-25 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* path.cc (normalize_posix_path): Reorganize to short circuit to DOS
|
||||
|
|
|
@ -1162,7 +1162,9 @@ wait_sig (VOID *self)
|
|||
default:
|
||||
if (pack.si.si_signo < 0)
|
||||
sig_clear (-pack.si.si_signo);
|
||||
else if (!sigq.sigs[pack.si.si_signo].si.si_signo)
|
||||
else if (sigq.sigs[pack.si.si_signo].si.si_signo)
|
||||
sigproc_printf ("sig %d already queued", pack.si.si_signo);
|
||||
else
|
||||
{
|
||||
int sig = pack.si.si_signo;
|
||||
int sigres = pack.process ();
|
||||
|
|
Loading…
Reference in New Issue