162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 262306a36Sopenharmony_ci#ifndef __ASM_GENERIC_UCONTEXT_H 362306a36Sopenharmony_ci#define __ASM_GENERIC_UCONTEXT_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_cistruct ucontext { 662306a36Sopenharmony_ci unsigned long uc_flags; 762306a36Sopenharmony_ci struct ucontext *uc_link; 862306a36Sopenharmony_ci stack_t uc_stack; 962306a36Sopenharmony_ci struct sigcontext uc_mcontext; 1062306a36Sopenharmony_ci sigset_t uc_sigmask; /* mask last for extensibility */ 1162306a36Sopenharmony_ci}; 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#endif /* __ASM_GENERIC_UCONTEXT_H */ 14