summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-01-02 10:54:54 +0000
committerRoland McGrath <roland@gnu.org>2002-01-02 10:54:54 +0000
commit044edf6d01a1ee7c2303da12b69e1c03322e1efc (patch)
tree711c3803543960e0b772066d6e28981f747bd8d1 /hurd
parent05dea6d10c72d7604d289eca4d39dadeda7e88ac (diff)
(_hurd_internal_post_signal): typo
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurdsig.c2
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);