From 63077d1623885706c48fa35335cdc012ec3e6946 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 18 Sep 2001 21:37:09 +0000 Subject: [PATCH] - Fix a missed idleproc -> idlethread conversion. - Remove redundany fpucurproc (fpucurthread already existed) --- sys/powerpc/include/globaldata.h | 3 +-- sys/powerpc/include/pcpu.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/sys/powerpc/include/globaldata.h b/sys/powerpc/include/globaldata.h index c95a725ba27..4d664497214 100644 --- a/sys/powerpc/include/globaldata.h +++ b/sys/powerpc/include/globaldata.h @@ -45,9 +45,8 @@ */ struct globaldata { struct thread *gd_curthread; /* current thread */ - struct proc *gd_idleproc; /* idle process */ + struct thread *gd_idlethread; /* idle thread */ struct thread *gd_fpcurthread; /* fp state owner */ - struct proc *gd_fpcurproc; /* fp state owner */ struct pcb *gd_curpcb; /* current pcb */ struct timeval gd_switchtime; int gd_switchticks; diff --git a/sys/powerpc/include/pcpu.h b/sys/powerpc/include/pcpu.h index c95a725ba27..4d664497214 100644 --- a/sys/powerpc/include/pcpu.h +++ b/sys/powerpc/include/pcpu.h @@ -45,9 +45,8 @@ */ struct globaldata { struct thread *gd_curthread; /* current thread */ - struct proc *gd_idleproc; /* idle process */ + struct thread *gd_idlethread; /* idle thread */ struct thread *gd_fpcurthread; /* fp state owner */ - struct proc *gd_fpcurproc; /* fp state owner */ struct pcb *gd_curpcb; /* current pcb */ struct timeval gd_switchtime; int gd_switchticks;