blob: b555486ac1e54b714331c2cff412b56099d65605 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $FreeBSD$ */
#include <sys/assym.h>
#include <sys/param.h>
#include <i386/linux/linux.h>
ASSYM(LINUX_SIGF_HANDLER, offsetof(linux_sigframe, sf_handler));
ASSYM(LINUX_SIGF_SC, offsetof(linux_sigframe, sf_sc));
ASSYM(LINUX_SC_GS, offsetof(linux_sigcontext, sc_gs));
ASSYM(LINUX_SC_EFLAGS, offsetof(linux_sigcontext, sc_eflags));
|