X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=include%2Fasm-x86%2Fucontext.h;h=50a79f7fcde9e42f85fe825553b3efbd60791371;hb=6d2a8401d27e3eb8b71d09dd67e0e7d0085b5e29;hp=175c8cb597317f28866490fc0f1834900d9b410e;hpb=1ce48904285fe4b0298864f9153a8502ebeac35c;p=linux-2.6-omap-h63xx.git diff --git a/include/asm-x86/ucontext.h b/include/asm-x86/ucontext.h index 175c8cb5973..50a79f7fcde 100644 --- a/include/asm-x86/ucontext.h +++ b/include/asm-x86/ucontext.h @@ -1,13 +1,12 @@ -#ifdef __KERNEL__ -# ifdef CONFIG_X86_32 -# include "ucontext_32.h" -# else -# include "ucontext_64.h" -# endif -#else -# ifdef __i386__ -# include "ucontext_32.h" -# else -# include "ucontext_64.h" -# endif -#endif +#ifndef _ASM_X86_UCONTEXT_H +#define _ASM_X86_UCONTEXT_H + +struct ucontext { + unsigned long uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + struct sigcontext uc_mcontext; + sigset_t uc_sigmask; /* mask last for extensibility */ +}; + +#endif /* _ASM_X86_UCONTEXT_H */