Deleted Added
full compact
linux_genassym.c (67899) linux_genassym.c (83221)
1/* $FreeBSD: head/sys/i386/linux/linux_genassym.c 67899 2000-10-29 16:57:42Z phk $ */
1/* $FreeBSD: head/sys/i386/linux/linux_genassym.c 83221 2001-09-08 19:07:04Z marcel $ */
2
3#include <sys/param.h>
4#include <sys/assym.h>
5
6#include <i386/linux/linux.h>
7
2
3#include <sys/param.h>
4#include <sys/assym.h>
5
6#include <i386/linux/linux.h>
7
8ASSYM(LINUX_SIGF_HANDLER, offsetof(struct linux_sigframe, sf_handler));
9ASSYM(LINUX_SIGF_SC, offsetof(struct linux_sigframe, sf_sc));
10ASSYM(LINUX_SC_GS, offsetof(struct linux_sigcontext, sc_gs));
11ASSYM(LINUX_SC_EFLAGS, offsetof(struct linux_sigcontext, sc_eflags));
12ASSYM(LINUX_RT_SIGF_HANDLER, offsetof(struct linux_rt_sigframe, sf_handler));
13ASSYM(LINUX_RT_SIGF_UC, offsetof(struct linux_rt_sigframe, sf_sc));
14
15
8ASSYM(LINUX_SIGF_HANDLER, offsetof(struct l_sigframe, sf_handler));
9ASSYM(LINUX_SIGF_SC, offsetof(struct l_sigframe, sf_sc));
10ASSYM(LINUX_SC_GS, offsetof(struct l_sigcontext, sc_gs));
11ASSYM(LINUX_SC_EFLAGS, offsetof(struct l_sigcontext, sc_eflags));
12ASSYM(LINUX_RT_SIGF_HANDLER, offsetof(struct l_rt_sigframe, sf_handler));
13ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_sc));