1/* Derived from:  Id: linux_genassym.c,v 1.8 1998/07/29 15:50:41 bde Exp */
2#include <sys/cdefs.h>
3__FBSDID("$FreeBSD: releng/10.3/sys/i386/svr4/svr4_genassym.c 116145 2003-06-10 05:05:54Z obrien $");
4
5#include <sys/param.h>
6#include <sys/assym.h>
7#include <sys/systm.h>
8
9#include <compat/svr4/svr4_signal.h>
10#include <compat/svr4/svr4_ucontext.h>
11
12/* XXX: This bit sucks rocks, but gets rid of compiler errors.  Maybe I should
13 * fix the include files instead... */
14#define SVR4_MACHDEP_JUST_REGS
15#include <i386/svr4/svr4_machdep.h>
16
17ASSYM(SVR4_SIGF_HANDLER, offsetof(struct svr4_sigframe, sf_handler));
18ASSYM(SVR4_SIGF_UC, offsetof(struct svr4_sigframe, sf_uc));
19ASSYM(SVR4_UC_FS, offsetof(struct svr4_ucontext,
20    uc_mcontext.greg[SVR4_X86_FS]));
21ASSYM(SVR4_UC_GS, offsetof(struct svr4_ucontext,
22    uc_mcontext.greg[SVR4_X86_GS]));
23ASSYM(SVR4_UC_EFLAGS, offsetof(struct svr4_ucontext,
24    uc_mcontext.greg[SVR4_X86_EFL]));
25