blob: a1228a3d20715fc9518efc7fb48c70013053c16e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_PARISC_COMPAT_UCONTEXT_H
2#define _ASM_PARISC_COMPAT_UCONTEXT_H
3
4#include<linux/compat.h>
5#include<asm/compat_signal.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 */