blob: ffe587e5b13b7e2fbff37825eab386aa69e34989 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 Hughes5e7f8f12022-10-01 15:10:58 +00007#ifndef _UAPI_ASM_RISCV_UCONTEXT_H
8#define _UAPI_ASM_RISCV_UCONTEXT_H
9#include <linux/types.h>
10struct 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