#ifndef _ASM_X86_SIGFRAME_H
#define _ASM_X86_SIGFRAME_H
#include <uapi/asm/sigcontext.h>
#include <asm/siginfo.h>
#include <asm/ucontext.h>
#include <linux/compat.h>
#ifdef CONFIG_X86_32
#define sigframe_ia32 …
#define rt_sigframe_ia32 …
#define ucontext_ia32 …
#else
#ifdef CONFIG_IA32_EMULATION
#include <asm/ia32.h>
#endif
#endif
#if defined(CONFIG_X86_32) || defined(CONFIG_IA32_EMULATION)
struct sigframe_ia32 { … };
struct rt_sigframe_ia32 { … };
#endif
#ifdef CONFIG_X86_64
struct rt_sigframe { … };
#ifdef CONFIG_X86_X32_ABI
struct ucontext_x32 { … };
struct rt_sigframe_x32 { … };
#endif
#endif
#endif