Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/include rearrange the PCB structure a bit s...



details:   https://anonhg.NetBSD.org/src/rev/52a1b9e8e50a
branches:  trunk
changeset: 534486:52a1b9e8e50a
user:      chs <chs%NetBSD.org@localhost>
date:      Sun Jul 28 07:02:54 2002 +0000

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

diffstat:

 sys/arch/powerpc/include/pcb.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 1587e74dba4d -r 52a1b9e8e50a sys/arch/powerpc/include/pcb.h
--- a/sys/arch/powerpc/include/pcb.h    Sun Jul 28 07:02:29 2002 +0000
+++ b/sys/arch/powerpc/include/pcb.h    Sun Jul 28 07:02:54 2002 +0000
@@ -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 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 {



Home | Main Index | Thread Index | Old Index