1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2 #ifndef _ASM_IA64_UCONTEXT_H 3 #define _ASM_IA64_UCONTEXT_H 4 5 struct ucontext { 6 struct sigcontext uc_mcontext; 7 }; 8 9 #define uc_link uc_mcontext.sc_gr[0] /* wrong type; nobody cares */ 10 #define uc_sigmask uc_mcontext.sc_sigmask 11 #define uc_stack uc_mcontext.sc_stack 12 13 #endif /* _ASM_IA64_UCONTEXT_H */ 14