diff options
Diffstat (limited to 'sys/amd64/include')
-rw-r--r-- | sys/amd64/include/frame.h | 3 | ||||
-rw-r--r-- | sys/amd64/include/reg.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/amd64/include/frame.h b/sys/amd64/include/frame.h index a591f53..a7455b6 100644 --- a/sys/amd64/include/frame.h +++ b/sys/amd64/include/frame.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)frame.h 5.2 (Berkeley) 1/18/91 - * $Id: frame.h,v 1.3 1993/11/07 17:42:56 wollman Exp $ + * $Id: frame.h,v 1.4 1993/11/17 23:25:03 wollman Exp $ */ #ifndef _MACHINE_FRAME_H_ @@ -105,6 +105,7 @@ struct sigframe { int sf_signum; int sf_code; struct sigcontext *sf_scp; + char *sf_addr; sig_t sf_handler; int sf_eax; int sf_edx; diff --git a/sys/amd64/include/reg.h b/sys/amd64/include/reg.h index 55f1556..969df87 100644 --- a/sys/amd64/include/reg.h +++ b/sys/amd64/include/reg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)reg.h 5.5 (Berkeley) 1/18/91 - * $Id: reg.h,v 1.3 1993/11/07 17:43:07 wollman Exp $ + * $Id: reg.h,v 1.4 1993/11/16 09:54:57 davidg Exp $ */ #ifndef _MACHINE_REG_H_ @@ -60,6 +60,8 @@ #define tECX (8) #define tEAX (9) +#define tERR (11) + #define tEIP (12) #define tCS (13) #define tEFLAGS (14) |