The previous revision introduced a compilation error, i.e., the use of an

undefined variable.  Correct this error.
This commit is contained in:
Alan Cox 2004-07-20 06:32:32 +00:00
parent 2c61418d05
commit fb7ed0f9cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132434

View file

@ -436,7 +436,7 @@ alpha_dispatch_intr(void *frame, unsigned long vector)
critical_enter();
ih->ih_handler(ih->ih_argument);
/* XXX */
td->td_pflags &= ~TDP_OWEPREEMPT;
curthread->td_pflags &= ~TDP_OWEPREEMPT;
critical_exit();
return;
}