diff options
Diffstat (limited to 'hurd/hurdsig.c')
-rw-r--r-- | hurd/hurdsig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 40b570b0f8..f26d43b111 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -588,7 +588,7 @@ _hurd_internal_post_signal (struct hurd_sigstate *ss, handler = ss->preemptors ? try_preemptor (ss->preemptors) : SIG_ERR; /* If no thread-specific preemptor, check for a global one. */ - if (handler == SIG_ERR && __sigismember (signo, _hurdsig_preempted_set)) + if (handler == SIG_ERR && __sigismember (&_hurdsig_preempted_set, signo)) { __mutex_lock (&_hurd_siglock); handler = try_preemptor (_hurdsig_preemptors); |