summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/include
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2005-08-02 21:02:50 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2005-08-02 21:02:50 +0000
commit4644da424bed48fc7cc36ce5fb79fe7eb2ca8b6e (patch)
tree88d69a0a3630229b4353627d887d39dbe7f3b445 /sys/arch/powerpc/include
parenta594ebf027047711c2fa6b99be0d94dda4ceb057 (diff)
Save floating point context on signals, looked at miod@ is it in yet? deraadt@
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r--sys/arch/powerpc/include/frame.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/frame.h b/sys/arch/powerpc/include/frame.h
index d7628de7cbd..674f7c2e9fa 100644
--- a/sys/arch/powerpc/include/frame.h
+++ b/sys/arch/powerpc/include/frame.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: frame.h,v 1.5 2001/09/01 15:49:05 drahn Exp $ */
+/* $OpenBSD: frame.h,v 1.6 2005/08/02 21:02:49 drahn Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -73,4 +73,9 @@ struct sigframe {
struct sigcontext sf_sc;
siginfo_t sf_si;
};
+
+struct fpsig {
+ double f[14]; /* f0 - f13 are volatile */
+ double fpscr;
+};
#endif /* _POWERPC_FRAME_H_ */