diff options
Diffstat (limited to 'sys/kern/sched_4bsd.c')
-rw-r--r-- | sys/kern/sched_4bsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c index fe6dfd9..3c4f0fe 100644 --- a/sys/kern/sched_4bsd.c +++ b/sys/kern/sched_4bsd.c @@ -518,7 +518,7 @@ sched_sleep(struct thread *td, u_char prio) void sched_switchin(struct thread *td) { - td->td_kse->ke_oncpu = PCPU_GET(cpuid); + td->td_oncpu = PCPU_GET(cpuid); } void @@ -532,9 +532,9 @@ sched_switchout(struct thread *td) KASSERT((ke->ke_state == KES_THREAD), ("mi_switch: kse state?")); - td->td_lastcpu = ke->ke_oncpu; + td->td_lastcpu = td->td_oncpu; td->td_last_kse = ke; - ke->ke_oncpu = NOCPU; + td->td_oncpu = NOCPU; td->td_flags &= ~TDF_NEEDRESCHED; /* * At the last moment, if this thread is still marked RUNNING, |