blob: 340c9c9e3ce6f6c66b3ea25db8e2c16c22c3d8a9 [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 */
Ben Cheng655a7c02013-10-16 16:09:24 -07007#ifndef __ASM_GENERIC_UCONTEXT_H
8#define __ASM_GENERIC_UCONTEXT_H
9struct ucontext {
Tao Baod7db5942015-01-28 10:07:51 -080010 unsigned long uc_flags;
Tao Baod7db5942015-01-28 10:07:51 -080011 struct ucontext * uc_link;
12 stack_t uc_stack;
13 struct sigcontext uc_mcontext;
14 sigset_t uc_sigmask;
Ben Cheng655a7c02013-10-16 16:09:24 -070015};
16#endif