12 lines
333 B
C
12 lines
333 B
C
/* $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));
|