blob: c606f1bc891df7e074782ce109d73c9c02195fbb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _ASM_PARISC_COMPAT_UCONTEXT_H
3#define _ASM_PARISC_COMPAT_UCONTEXT_H
4
Kyle McMartinf671c452006-01-15 14:10:29 -05005#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
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 */