- Fix a missed idleproc -> idlethread conversion.

- Remove redundany fpucurproc (fpucurthread already existed)
This commit is contained in:
John Baldwin 2001-09-18 21:37:09 +00:00
parent 9ed316e3a7
commit 63077d1623
2 changed files with 2 additions and 4 deletions

View file

@ -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;

View file

@ -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;