From Toru Nishimura: adjust for struct user pcb changes.

This commit is contained in:
mhitch 1997-06-15 17:40:03 +00:00
parent 386cf35c8d
commit 501b5e6892
1 changed files with 4 additions and 3 deletions

View File

@ -54,10 +54,11 @@ define P_BACK offsetof(struct proc, p_back)
define P_PRIORITY offsetof(struct proc, p_priority)
define P_ADDR offsetof(struct proc, p_addr)
define P_UPTE offsetof(struct proc, p_md.md_upte)
define U_PCB_REGS offsetof(struct user, u_pcb.pcb_regs)
define P_MD_REGS offsetof(struct proc, p_md.md_regs)
define P_MD_UPTE offsetof(struct proc, p_md.md_upte)
define U_PCB_FPREGS offsetof(struct user, u_pcb.pcb_regs[F0])
define U_PCB_REGS offsetof(struct user, u_pcb.pcb_regs)
define U_PCB_FPREGS offsetof(struct user, u_pcb.pcb_fpregs)
define U_PCB_CONTEXT offsetof(struct user, u_pcb.pcb_context)
define U_PCB_ONFAULT offsetof(struct user, u_pcb.pcb_onfault)
define U_PCB_SEGTAB offsetof(struct user, u_pcb.pcb_segtab)