1 #ifndef _ASM_POWERPC_UCONTEXT_H
 
   2 #define _ASM_POWERPC_UCONTEXT_H
 
   5 #include <asm/sigcontext.h>
 
   9 #include <asm/signal.h>
 
  13         elf_gregset_t   mc_gregs;
 
  14         elf_fpregset_t  mc_fregs;
 
  15         unsigned long   mc_pad[2];
 
  16         elf_vrregset_t  mc_vregs __attribute__((__aligned__(16)));
 
  21         unsigned long   uc_flags;
 
  22         struct ucontext __user *uc_link;
 
  26         struct mcontext __user *uc_regs;/* points to uc_mcontext field */
 
  29         /* glibc has 1024-bit signal masks, ours are 64-bit */
 
  31         sigset_t        __unused[15];   /* Allow for uc_sigmask growth */
 
  32         struct sigcontext uc_mcontext;  /* last for extensibility */
 
  36         struct mcontext uc_mcontext;
 
  40 #endif /* _ASM_POWERPC_UCONTEXT_H */