15 lines
388 B
C
15 lines
388 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _UAPI_ASM_SW64_UCONTEXT_H
|
|
#define _UAPI_ASM_SW64_UCONTEXT_H
|
|
|
|
struct ucontext {
|
|
unsigned long uc_flags;
|
|
struct ucontext *uc_link;
|
|
old_sigset_t uc_old_sigmask;
|
|
stack_t uc_stack;
|
|
struct sigcontext uc_mcontext;
|
|
sigset_t uc_sigmask; /* mask last for extensibility */
|
|
};
|
|
|
|
#endif /* _UAPI_ASM_SW64_UCONTEXT_H */
|