xref: /aosp_15_r20/prebuilts/build-tools/sysroots/i686-unknown-linux-musl/include/asm-generic/ucontext.h (revision cda5da8d549138a6648c5ee6d7a49cf8f4a657be)
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