18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * include/asm-xtensa/ucontext.h 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public 58c2ecf20Sopenharmony_ci * License. See the file "COPYING" in the main directory of this archive 68c2ecf20Sopenharmony_ci * for more details. 78c2ecf20Sopenharmony_ci * 88c2ecf20Sopenharmony_ci * Copyright (C) 2001 - 2005 Tensilica Inc. 98c2ecf20Sopenharmony_ci */ 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci#ifndef _XTENSA_UCONTEXT_H 128c2ecf20Sopenharmony_ci#define _XTENSA_UCONTEXT_H 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_cistruct ucontext { 158c2ecf20Sopenharmony_ci unsigned long uc_flags; 168c2ecf20Sopenharmony_ci struct ucontext *uc_link; 178c2ecf20Sopenharmony_ci stack_t uc_stack; 188c2ecf20Sopenharmony_ci struct sigcontext uc_mcontext; 198c2ecf20Sopenharmony_ci sigset_t uc_sigmask; /* mask last for extensibility */ 208c2ecf20Sopenharmony_ci}; 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci#endif /* _XTENSA_UCONTEXT_H */ 23