Elliott Hughes | 180edef | 2023-11-02 00:08:05 +0000 | [diff] [blame] | 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 | */ |
Elliott Hughes | 5e7f8f1 | 2022-10-01 15:10:58 +0000 | [diff] [blame] | 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 |