linux_genassym.c (416ba5c74546f32a993436a99516d35008e9f384) linux_genassym.c (ba279bcd6d75aa236bcb9ccf11aeb6f51a2f8514)
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD$");
3
4#include <sys/param.h>
5#include <sys/assym.h>
6#include <sys/systm.h>
7
8#include <i386/linux/linux.h>
9#include <compat/linux/linux_mib.h>
10
1#include <sys/cdefs.h>
2__FBSDID("$FreeBSD$");
3
4#include <sys/param.h>
5#include <sys/assym.h>
6#include <sys/systm.h>
7
8#include <i386/linux/linux.h>
9#include <compat/linux/linux_mib.h>
10
11ASSYM(LINUX_SIGF_HANDLER, offsetof(struct l_sigframe, sf_handler));
12ASSYM(LINUX_SIGF_SC, offsetof(struct l_sigframe, sf_sc));
13ASSYM(LINUX_SC_GS, offsetof(struct l_sigcontext, sc_gs));
14ASSYM(LINUX_SC_EFLAGS, offsetof(struct l_sigcontext, sc_eflags));
11ASSYM(LINUX_SIGF_SC, offsetof(struct l_sigframe, sf_sc));
12ASSYM(LINUX_SC_GS, offsetof(struct l_sigcontext, sc_gs));
13ASSYM(LINUX_SC_EFLAGS, offsetof(struct l_sigcontext, sc_eflags));
15ASSYM(LINUX_RT_SIGF_HANDLER, offsetof(struct l_rt_sigframe, sf_handler));
16ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_sc));
17ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext));
18ASSYM(LINUX_SC_ESP, offsetof(struct l_sigcontext, sc_esp));
19ASSYM(LINUX_VERSION_CODE, LINUX_VERSION_CODE);
14ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_sc));
15ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext));
16ASSYM(LINUX_SC_ESP, offsetof(struct l_sigcontext, sc_esp));
17ASSYM(LINUX_VERSION_CODE, LINUX_VERSION_CODE);