diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-03 23:22:39 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-03 23:22:39 +0000 |
commit | a16e39ea9bff955a86cc503b8904d6a70c206871 (patch) | |
tree | ee85b85f14f2c605a0c3b9c0fc4c3f1dacd45e00 /sys | |
parent | 19b9190fb34b936890906fd805a7d59481c75532 (diff) |
add siginfo member to struct sigframe
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sun3/sun3/machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/machdep.c b/sys/arch/sun3/sun3/machdep.c index 9e58a48313a..ecd655dab1a 100644 --- a/sys/arch/sun3/sun3/machdep.c +++ b/sys/arch/sun3/sun3/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.15 1997/02/03 21:30:14 kstailey Exp $ */ +/* $OpenBSD: machdep.c,v 1.16 1997/02/03 23:22:38 kstailey Exp $ */ /* $NetBSD: machdep.c,v 1.77 1996/10/13 03:47:51 christos Exp $ */ /* @@ -482,6 +482,7 @@ struct sigframe { sig_t sf_handler; /* handler addr for u_sigc */ struct sigstate sf_state; /* state of the hardware */ struct sigcontext sf_sc; /* actual context */ + siginfo_t sf_si; }; #ifdef DEBUG |