1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef _UAPI__ASM_UCONTEXT_H 8 #define _UAPI__ASM_UCONTEXT_H 9 #include <linux/types.h> 10 struct ucontext { 11 unsigned long uc_flags; 12 struct ucontext * uc_link; 13 stack_t uc_stack; 14 sigset_t uc_sigmask; 15 __u8 __linux_unused[1024 / 8 - sizeof(sigset_t)]; 16 struct sigcontext uc_mcontext; 17 }; 18 #endif 19