diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-10-09 14:52:13 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-10-09 14:52:13 +0000 |
commit | cf0567ecdec309b2995b80d2a634b5fb25391e0f (patch) | |
tree | bc38d65ad3667eccbc895186a0bfb6ba0c5e524d /sys/arch/macppc | |
parent | a802e1ffc6da9faf0266f5e2bac875f6c8bd5e67 (diff) |
Subtle changes to the powerpc fpu handling, basically fpuproc is handled
in a non-raceable manner inside save_fpu and enable_fpu so that the
eventual SMP case will not grab a half loaded fpu context.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/machdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c index 713f346e033..f1b741f673f 100644 --- a/sys/arch/macppc/macppc/machdep.c +++ b/sys/arch/macppc/macppc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.76 2005/10/09 14:17:32 drahn Exp $ */ +/* $OpenBSD: machdep.c,v 1.77 2005/10/09 14:52:12 drahn Exp $ */ /* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */ /* @@ -93,7 +93,6 @@ */ struct pcb *curpcb; struct pmap *curpm; -struct proc *fpuproc; extern struct user *proc0paddr; struct pool ppc_vecpl; |