Merge tag 'for-5.8/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[linux/fpc-iii.git] / arch / parisc / include / asm / compat_ucontext.h
blobc606f1bc891df7e074782ce109d73c9c02195fbb
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_PARISC_COMPAT_UCONTEXT_H
3 #define _ASM_PARISC_COMPAT_UCONTEXT_H
5 #include <linux/compat.h>
7 /* 32-bit ucontext as seen from an 64-bit kernel */
8 struct 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 */
18 #endif /* !_ASM_PARISC_COMPAT_UCONTEXT_H */