18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef _ASM_PARISC_UCONTEXT_H 38c2ecf20Sopenharmony_ci#define _ASM_PARISC_UCONTEXT_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_cistruct ucontext { 68c2ecf20Sopenharmony_ci unsigned int 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_PARISC_UCONTEXT_H */ 14