blob: 97536c573f212eccd10a125a74c41571c37f6fbc [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 */
Christopher Ferris05d08e92016-02-04 13:16:38 -08007#ifndef _UAPI__ASM_UCONTEXT_H
8#define _UAPI__ASM_UCONTEXT_H
9#include <linux/types.h>
10struct ucontext {
Christopher Ferris05d08e92016-02-04 13:16:38 -080011 unsigned long uc_flags;
12 struct ucontext * uc_link;
13 stack_t uc_stack;
14 sigset_t uc_sigmask;
Christopher Ferris05d08e92016-02-04 13:16:38 -080015 __u8 __linux_unused[1024 / 8 - sizeof(sigset_t)];
16 struct sigcontext uc_mcontext;
17};
18#endif