/* * This header was generated from the Linux kernel headers by update_headers.py, * to provide necessary information from kernel to userspace, such as constants, * structures, and macros, and thus, contains no copyrightable information. */ #ifndef __ASM_UCONTEXT_H #define __ASM_UCONTEXT_H #include struct ucontext { unsigned long uc_flags; struct ucontext *uc_link; stack_t uc_stack; sigset_t uc_sigmask; __u8 __linux_unused[1024 / 8 - sizeof(sigset_t)]; struct sigcontext uc_mcontext; }; #endif