more ppc signal.h typedef order fixes

This commit is contained in:
Rich Felker 2012-11-21 13:51:14 -05:00
parent 808f225b7c
commit 4860db9f54
1 changed files with 13 additions and 13 deletions

View File

@ -5,19 +5,6 @@
typedef unsigned long gregset_t[48];
struct sigcontext
{
unsigned long _unused[4];
int signal;
unsigned long handler;
unsigned long oldmask;
void *regs;
gregset_t gp_regs;
fpregset_t fp_regs;
vrregset_t *v_regs;
long vmx_reserve[33+33+32+1]; /* 33=34 for ppc64 */
};
typedef struct {
double fpregs[32];
double fpscr;
@ -31,6 +18,19 @@ typedef struct {
unsigned vscr;
} vrregset_t;
struct sigcontext
{
unsigned long _unused[4];
int signal;
unsigned long handler;
unsigned long oldmask;
void *regs;
gregset_t gp_regs;
fpregset_t fp_regs;
vrregset_t *v_regs;
long vmx_reserve[33+33+32+1]; /* 33=34 for ppc64 */
};
typedef struct {
gregset_t gregs;
fpregset_t fpregs;