diff options
author | jhb <jhb@FreeBSD.org> | 2005-04-09 18:15:17 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-04-09 18:15:17 +0000 |
commit | 69abb3fc4e3dff5896adca6268e4a89478c5e4da (patch) | |
tree | 15a4bf0697c7973602cc2f93c3b691022780cda5 | |
parent | 8f9f7186acbe879ea16ce72e24e4f39e96c914dd (diff) | |
download | FreeBSD-src-69abb3fc4e3dff5896adca6268e4a89478c5e4da.zip FreeBSD-src-69abb3fc4e3dff5896adca6268e4a89478c5e4da.tar.gz |
Fix another instance of TDP_OWEPREEMPT -> td_owepreempt.
Reported by: tinderbox
-rw-r--r-- | sys/alpha/alpha/interrupt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/alpha/interrupt.c b/sys/alpha/alpha/interrupt.c index caaf671..e9eb81e 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 */ - curthread->td_pflags &= ~TDP_OWEPREEMPT; + curthread->td_owepreempt = 0; critical_exit(); return; } |