repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
15 lines
348 B
C
15 lines
348 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASMAXP_UCONTEXT_H
|
|
#define _ASMAXP_UCONTEXT_H
|
|
|
|
struct ucontext {
|
|
unsigned long uc_flags;
|
|
struct ucontext *uc_link;
|
|
old_sigset_t uc_osf_sigmask;
|
|
stack_t uc_stack;
|
|
struct sigcontext uc_mcontext;
|
|
sigset_t uc_sigmask; /* mask last for extensibility */
|
|
};
|
|
|
|
#endif /* !_ASMAXP_UCONTEXT_H */
|