Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _ASM_IA64_UCONTEXT_H
3#define _ASM_IA64_UCONTEXT_H
4
5struct 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 */