s/!SIGNOTEMPY/SIGISEMPTY/

Reviewed by: marcel, jhb, alfred
This commit is contained in:
Chad David 2002-06-06 19:12:41 +00:00
parent 93994536bd
commit ca18d53eae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97950

View File

@ -1553,7 +1553,7 @@ issignal(p)
SIGSETNAND(mask, p->p_sigmask);
if (p->p_flag & P_PPWAIT)
SIG_STOPSIGMASK(mask);
if (!SIGNOTEMPTY(mask)) /* no signal to send */
if (SIGISEMPTY(mask)) /* no signal to send */
return (0);
sig = sig_ffs(&mask);
prop = sigprop(sig);