ia32_genassym.c revision 163018
1118031Sobrien#include <sys/cdefs.h>
2118031Sobrien__FBSDID("$FreeBSD: head/sys/compat/ia32/ia32_genassym.c 163018 2006-10-05 01:56:11Z davidxu $");
3114987Speter
4114987Speter#include "opt_compat.h"
5114987Speter
6114987Speter#include <sys/param.h>
7114987Speter#include <sys/assym.h>
8114987Speter#include <sys/systm.h>
9114987Speter#include <sys/signal.h>
10114987Speter
11163018Sdavidxu#include <compat/freebsd32/freebsd32_signal.h>
12119334Speter#include <compat/ia32/ia32_signal.h>
13114987Speter
14114987SpeterASSYM(IA32_SIGF_HANDLER, offsetof(struct ia32_sigframe, sf_ah));
15114987SpeterASSYM(IA32_SIGF_UC, offsetof(struct ia32_sigframe, sf_uc));
16114987SpeterASSYM(IA32_UC_GS, offsetof(struct ia32_ucontext, uc_mcontext.mc_gs));
17114987SpeterASSYM(IA32_UC_FS, offsetof(struct ia32_ucontext, uc_mcontext.mc_fs));
18114987SpeterASSYM(IA32_UC_ES, offsetof(struct ia32_ucontext, uc_mcontext.mc_es));
19114987SpeterASSYM(IA32_UC_DS, offsetof(struct ia32_ucontext, uc_mcontext.mc_ds));
20114987Speter#ifdef COMPAT_FREEBSD4
21126090SpeterASSYM(IA32_SIGF_UC4, offsetof(struct ia32_sigframe4, sf_uc));
22114987SpeterASSYM(IA32_UC4_GS, offsetof(struct ia32_ucontext4, uc_mcontext.mc_gs));
23114987SpeterASSYM(IA32_UC4_FS, offsetof(struct ia32_ucontext4, uc_mcontext.mc_fs));
24114987SpeterASSYM(IA32_UC4_ES, offsetof(struct ia32_ucontext4, uc_mcontext.mc_es));
25114987SpeterASSYM(IA32_UC4_DS, offsetof(struct ia32_ucontext4, uc_mcontext.mc_ds));
26114987Speter#endif
27