1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_PARISC_COMPAT_UCONTEXT_H
3#define _ASM_PARISC_COMPAT_UCONTEXT_H
4
5#include <linux/compat.h>
6
7/* 32-bit ucontext as seen from an 64-bit kernel */
8struct compat_ucontext {
9	compat_uint_t uc_flags;
10	compat_uptr_t uc_link;
11	compat_stack_t uc_stack;	/* struct compat_sigaltstack (12 bytes)*/
12	/* FIXME: Pad out to get uc_mcontext to start at an 8-byte aligned boundary */
13	compat_uint_t pad[1];
14	struct compat_sigcontext uc_mcontext;
15	compat_sigset_t uc_sigmask;	/* mask last for extensibility */
16};
17
18#endif /* !_ASM_PARISC_COMPAT_UCONTEXT_H */
19