xref: /aosp_15_r20/bionic/libc/kernel/uapi/asm-riscv/asm/ucontext.h (revision 8d67ca893c1523eb926b9080dbe4e2ffd2a27ba1)
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_RISCV_UCONTEXT_H
8 #define _UAPI_ASM_RISCV_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