linux_genassym.c (8f9635dc99f571a0ae4e613b9a0439e68da7b160) | linux_genassym.c (2456a45929328ce73a40ef6577600b0f1e2cced6) |
---|---|
1#include <sys/cdefs.h> 2__FBSDID("$FreeBSD$"); 3 4#include <sys/param.h> | 1#include <sys/cdefs.h> 2__FBSDID("$FreeBSD$"); 3 4#include <sys/param.h> |
5#include <sys/assym.h> | |
6#include <sys/systm.h> | 5#include <sys/systm.h> |
6#include <sys/assym.h> |
|
7 8#include <amd64/linux/linux.h> 9#include <compat/linux/linux_mib.h> 10 11#include <x86/linux/linux_x86_sigframe.h> 12 13ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_uc)); 14ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext)); --- 20 unchanged lines hidden --- | 7 8#include <amd64/linux/linux.h> 9#include <compat/linux/linux_mib.h> 10 11#include <x86/linux/linux_x86_sigframe.h> 12 13ASSYM(LINUX_RT_SIGF_UC, offsetof(struct l_rt_sigframe, sf_uc)); 14ASSYM(LINUX_RT_SIGF_SC, offsetof(struct l_ucontext, uc_mcontext)); --- 20 unchanged lines hidden --- |