18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef _ASMAXP_UCONTEXT_H 38c2ecf20Sopenharmony_ci#define _ASMAXP_UCONTEXT_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_cistruct ucontext { 68c2ecf20Sopenharmony_ci unsigned long uc_flags; 78c2ecf20Sopenharmony_ci struct ucontext *uc_link; 88c2ecf20Sopenharmony_ci old_sigset_t uc_osf_sigmask; 98c2ecf20Sopenharmony_ci stack_t uc_stack; 108c2ecf20Sopenharmony_ci struct sigcontext uc_mcontext; 118c2ecf20Sopenharmony_ci sigset_t uc_sigmask; /* mask last for extensibility */ 128c2ecf20Sopenharmony_ci}; 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci#endif /* !_ASMAXP_UCONTEXT_H */ 15