mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 08:28:13 +00:00
003a46cfff
Scripted unification. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
12 lines
279 B
C
12 lines
279 B
C
#ifndef _ASM_X86_UCONTEXT_H
|
|
#define _ASM_X86_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_X86_UCONTEXT_H */
|