summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2004-07-20 06:32:32 +0000
committeralc <alc@FreeBSD.org>2004-07-20 06:32:32 +0000
commit1aa85164b17800f0af5848dc5cc0a6254bfb15b9 (patch)
treeb6baf3854dcc1e453dfdfcb234204e8a72ac2d67 /sys
parent164861df2d9f054fc316a15581decf1c225f170f (diff)
downloadFreeBSD-src-1aa85164b17800f0af5848dc5cc0a6254bfb15b9.zip
FreeBSD-src-1aa85164b17800f0af5848dc5cc0a6254bfb15b9.tar.gz
The previous revision introduced a compilation error, i.e., the use of an
undefined variable. Correct this error.
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 1c3bd47..a9e0834 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;
}
OpenPOWER on IntegriCloud