mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
11 lines
333 B
C
11 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));
|