1ea0fabbcSTim J. Robbins #include <sys/cdefs.h> 2ea0fabbcSTim J. Robbins __FBSDID("$FreeBSD$"); 3ea0fabbcSTim J. Robbins 4ea0fabbcSTim J. Robbins #include <sys/param.h> 5ea0fabbcSTim J. Robbins #include <sys/assym.h> 6001398c4SDmitry Chagin #include <sys/resource.h> 7ea0fabbcSTim J. Robbins #include <sys/systm.h> 8ea0fabbcSTim J. Robbins 9ea0fabbcSTim J. Robbins #include <amd64/linux32/linux.h> 10*bdc37934SDmitry Chagin #include <compat/linux/linux_mib.h> 11ea0fabbcSTim J. Robbins 12ea0fabbcSTim J. Robbins ASSYM(LINUX_SIGF_HANDLER, offsetof(struct l_sigframe, sf_handler)); 13ea0fabbcSTim J. Robbins ASSYM(LINUX_SIGF_SC, offsetof(struct l_sigframe, sf_sc)); 14ea0fabbcSTim J. Robbins ASSYM(LINUX_RT_SIGF_HANDLER, offsetof(struct l_rt_sigframe, sf_handler)); 15ea0fabbcSTim J. Robbins ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_sc)); 169dee707cSKonstantin Belousov ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext)); 17*bdc37934SDmitry Chagin ASSYM(LINUX_VERSION_CODE, LINUX_VERSION_CODE); 18*bdc37934SDmitry Chagin ASSYM(LINUX_SC_ESP, offsetof(struct l_sigcontext, sc_esp)); 19