diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2008-04-27 16:01:48 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2008-04-27 16:01:48 +0000 |
commit | bd03abea783aaa8400341d61a5af3f6f0f8f7bf2 (patch) | |
tree | 97a90dc24f46b4ea4de2ae57eaab17ac9523e52b /sys/arch/powerpc/include | |
parent | 5788a8af1750cfa41066856b1ecabf16211465dc (diff) |
FPU/Altivec cleanup and prep for SMP.
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r-- | sys/arch/powerpc/include/pcb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/pcb.h b/sys/arch/powerpc/include/pcb.h index 7560dee7b17..e6672182033 100644 --- a/sys/arch/powerpc/include/pcb.h +++ b/sys/arch/powerpc/include/pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcb.h,v 1.11 2007/10/10 15:53:52 art Exp $ */ +/* $OpenBSD: pcb.h,v 1.12 2008/04/27 16:01:47 drahn Exp $ */ /* $NetBSD: pcb.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -57,6 +57,8 @@ struct pcb { double fpcsr; /* FPCSR stored as double for easier access */ } pcb_fpu; /* Floating point processor */ struct vreg *pcb_vr; /* Vector unit */ + struct cpu_info *pcb_fpcpu; + struct cpu_info *pcb_veccpu; }; struct md_coredump { |