diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-20 23:03:00 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-20 23:03:00 -0400 |
commit | 700a1b10b3a9d021b6a02d0f837ddfde52578634 (patch) | |
tree | 7f4e7164bd747d490a7663e324b9ec4eecfa4900 /preinit/linux-headers/asm-generic/ucontext.h | |
parent | 3d25ee9a165c3962473194c6c0e913fbbeb7045e (diff) |
initial commit
Diffstat (limited to 'preinit/linux-headers/asm-generic/ucontext.h')
-rw-r--r-- | preinit/linux-headers/asm-generic/ucontext.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/preinit/linux-headers/asm-generic/ucontext.h b/preinit/linux-headers/asm-generic/ucontext.h new file mode 100644 index 0000000..351868a --- /dev/null +++ b/preinit/linux-headers/asm-generic/ucontext.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ +#ifndef __ASM_GENERIC_UCONTEXT_H +#define __ASM_GENERIC_UCONTEXT_H + +struct ucontext { + unsigned long uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + struct sigcontext uc_mcontext; + sigset_t uc_sigmask; /* mask last for extensibility */ +}; + +#endif /* __ASM_GENERIC_UCONTEXT_H */ |