summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/include
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2005-10-09 14:52:13 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2005-10-09 14:52:13 +0000
commitcf0567ecdec309b2995b80d2a634b5fb25391e0f (patch)
treebc38d65ad3667eccbc895186a0bfb6ba0c5e524d /sys/arch/powerpc/include
parenta802e1ffc6da9faf0266f5e2bac875f6c8bd5e67 (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/powerpc/include')
-rw-r--r--sys/arch/powerpc/include/fpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/fpu.h b/sys/arch/powerpc/include/fpu.h
index b845691b37a..82cd06facb3 100644
--- a/sys/arch/powerpc/include/fpu.h
+++ b/sys/arch/powerpc/include/fpu.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fpu.h,v 1.5 2001/09/01 15:49:05 drahn Exp $ */
+/* $OpenBSD: fpu.h,v 1.6 2005/10/09 14:52:12 drahn Exp $ */
/*-
* Copyright (C) 1996 Wolfgang Solfrank.
@@ -67,5 +67,5 @@
#define FPCSR_RN 0x00000003
void enable_fpu(struct proc *p);
-void save_fpu(struct proc *p);
+void save_fpu(void);
#endif /* _POWERPC_FPU_H_ */