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 __ASM_GENERIC_UCONTEXT_H
8 #define __ASM_GENERIC_UCONTEXT_H
9 struct ucontext {
10   unsigned long uc_flags;
11   struct ucontext * uc_link;
12   stack_t uc_stack;
13   struct sigcontext uc_mcontext;
14   sigset_t uc_sigmask;
15 };
16 #endif
17