rearrange the PCB structure a bit so it's easier to look at in ddb.

This commit is contained in:
chs 2002-07-28 07:02:54 +00:00
parent 4b5a2a3f79
commit 84b41b2adb
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcb.h,v 1.9 2002/07/05 18:45:21 matt Exp $ */
/* $NetBSD: pcb.h,v 1.10 2002/07/28 07:02:54 chs Exp $ */
/*-
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -46,14 +46,14 @@ struct pcb {
struct pmap *pcb_pmreal; /* real address of above */
register_t pcb_sp; /* saved SP */
int pcb_spl; /* saved SPL */
struct cpu_info * __volatile pcb_fpcpu; /* CPU with our FP state */
struct cpu_info * __volatile pcb_veccpu;/* CPU with our VECTOR state */
faultbuf *pcb_onfault; /* For use during copyin/copyout */
int pcb_flags;
#define PCB_FPU 1 /* Process had FPU initialized */
#define PCB_ALTIVEC 2 /* Process had AltiVec initialized */
struct fpu pcb_fpu; /* Floating point processor */
struct vreg *pcb_vr;
struct cpu_info *pcb_fpcpu; /* CPU with our FP state */
struct cpu_info *pcb_veccpu; /* CPU with our VECTOR state */
};
struct md_coredump {