From fb7ed0f9ccc201c47ff8c29dc363f207dffe7730 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 20 Jul 2004 06:32:32 +0000 Subject: [PATCH] The previous revision introduced a compilation error, i.e., the use of an undefined variable. Correct this error. --- sys/alpha/alpha/interrupt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/alpha/alpha/interrupt.c b/sys/alpha/alpha/interrupt.c index 1c3bd47426a..a9e0834cd3b 100644 --- a/sys/alpha/alpha/interrupt.c +++ b/sys/alpha/alpha/interrupt.c @@ -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; }