diff options
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c index 71536a2..91c69be 100644 --- a/sys/kern/kern_sig.c +++ b/sys/kern/kern_sig.c @@ -1953,7 +1953,7 @@ tdsigwakeup(struct thread *td, int sig, sig_t action) td->td_priority = PUSER; } } - if (TD_IS_SLEEPING(td)) { + if (TD_ON_SLEEPQ(td)) { /* * If thread is sleeping uninterruptibly * we can't interrupt the sleep... the signal will |