summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2004-07-20 06:32:32 +0000
committerAlan Cox <alc@FreeBSD.org>2004-07-20 06:32:32 +0000
commitfb7ed0f9ccc201c47ff8c29dc363f207dffe7730 (patch)
treeb6baf3854dcc1e453dfdfcb234204e8a72ac2d67 /sys
parent2c61418d05e0ec9fbf4f24b64e5358bb53a14b73 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/alpha/alpha/interrupt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/alpha/interrupt.c b/sys/alpha/alpha/interrupt.c
index 1c3bd47426ab..a9e0834cd3bf 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;
}