18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 28c2ecf20Sopenharmony_ci#ifndef __ASM_GENERIC_UCONTEXT_H 38c2ecf20Sopenharmony_ci#define __ASM_GENERIC_UCONTEXT_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_cistruct ucontext { 68c2ecf20Sopenharmony_ci unsigned long uc_flags; 78c2ecf20Sopenharmony_ci struct ucontext *uc_link; 88c2ecf20Sopenharmony_ci stack_t uc_stack; 98c2ecf20Sopenharmony_ci struct sigcontext uc_mcontext; 108c2ecf20Sopenharmony_ci sigset_t uc_sigmask; /* mask last for extensibility */ 118c2ecf20Sopenharmony_ci}; 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci#endif /* __ASM_GENERIC_UCONTEXT_H */ 14