4 * Derived from "include/asm-i386/ucontext.h"
7 #ifndef _ASM_S390_UCONTEXT_H
8 #define _ASM_S390_UCONTEXT_H
10 #define UC_EXTENDED 0x00000001
14 struct ucontext_extended
{
15 unsigned long uc_flags
;
16 struct ucontext
*uc_link
;
20 /* Allow for uc_sigmask growth. Glibc uses a 1024-bit sigset_t. */
21 unsigned char __unused
[128 - sizeof(sigset_t
)];
22 unsigned long uc_gprs_high
[16];
28 unsigned long uc_flags
;
29 struct ucontext
*uc_link
;
33 /* Allow for uc_sigmask growth. Glibc uses a 1024-bit sigset_t. */
34 unsigned char __unused
[128 - sizeof(sigset_t
)];
37 #endif /* !_ASM_S390_UCONTEXT_H */