1 #ifndef _ASMPPC_UCONTEXT_H
2 #define _ASMPPC_UCONTEXT_H
5 #include <asm/signal.h>
8 elf_gregset_t mc_gregs;
9 elf_fpregset_t mc_fregs;
10 unsigned long mc_pad[2];
11 elf_vrregset_t mc_vregs __attribute__((__aligned__(16)));
15 unsigned long uc_flags;
16 struct ucontext __user *uc_link;
19 struct mcontext __user *uc_regs;/* points to uc_mcontext field */
21 /* glibc has 1024-bit signal masks, ours are 64-bit */
24 struct mcontext uc_mcontext;
27 #endif /* !_ASMPPC_UCONTEXT_H */