1*a9643ea8Slogwang #include <sys/cdefs.h> 2*a9643ea8Slogwang __FBSDID("$FreeBSD$"); 3*a9643ea8Slogwang 4*a9643ea8Slogwang #include <sys/param.h> 5*a9643ea8Slogwang #include <sys/assym.h> 6*a9643ea8Slogwang #include <sys/systm.h> 7*a9643ea8Slogwang 8*a9643ea8Slogwang #include <amd64/linux/linux.h> 9*a9643ea8Slogwang #include <compat/linux/linux_mib.h> 10*a9643ea8Slogwang 11*a9643ea8Slogwang ASSYM(LINUX_RT_SIGF_HANDLER, offsetof(struct l_rt_sigframe, sf_handler)); 12*a9643ea8Slogwang ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_sc)); 13*a9643ea8Slogwang ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext)); 14*a9643ea8Slogwang ASSYM(LINUX_VERSION_CODE, LINUX_VERSION_CODE); 15*a9643ea8Slogwang ASSYM(LINUX_SC_RSP, offsetof(struct l_sigcontext, sc_rsp)); 16