(_hurd_internal_post_signal): typo

This commit is contained in:
Roland McGrath 2002-01-02 10:54:54 +00:00
parent 05dea6d10c
commit 044edf6d01
1 changed files with 1 additions and 1 deletions

View File

@ -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);