summaryrefslogtreecommitdiff
path: root/sys/arch/i386/include/frame.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-03 15:05:14 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-02-03 15:05:14 +0000
commit36673853fc6ee0ff9ae8cc28e77379253b98a06d (patch)
treec75d03aa9504c0d5606e9daf0fe78f2a40db0225 /sys/arch/i386/include/frame.h
parent37259f98e5e9bfef1d71205e5cabe07716e9adb0 (diff)
More siginfo implementations (alpha and mips might even work)
move "siginfo_t *" to 2nd arg of signal handler as 1003.1b requires. I really wish I had 1003.1b documentation.
Diffstat (limited to 'sys/arch/i386/include/frame.h')
-rw-r--r--sys/arch/i386/include/frame.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/i386/include/frame.h b/sys/arch/i386/include/frame.h
index 8b9d043d00d..d2bea05400f 100644
--- a/sys/arch/i386/include/frame.h
+++ b/sys/arch/i386/include/frame.h
@@ -115,9 +115,8 @@ struct switchframe {
*/
struct sigframe {
int sf_signum;
- int sf_code;
- struct sigcontext *sf_scp;
siginfo_t *sf_sip;
+ struct sigcontext *sf_scp;
sig_t sf_handler;
struct sigcontext sf_sc;
siginfo_t sf_si;