Fix x86 user_regs_struct.

I fixed x86-64 yesterday, but didn't fix x86 at the same time.

Change-Id: I5c081f5956dfedb9389af303369b841dd0fc1953
This commit is contained in:
Elliott Hughes 2014-01-09 14:01:18 -08:00
parent 6114ffb3e1
commit f8b2b3c81e

View File

@ -61,23 +61,23 @@ struct user_fxsr_struct {
long padding[56]; long padding[56];
}; };
struct user_regs_struct { struct user_regs_struct {
unsigned long bx; long ebx;
unsigned long cx; long ecx;
unsigned long dx; long edx;
unsigned long si; long esi;
unsigned long di; long edi;
unsigned long bp; long ebp;
unsigned long ax; long eax;
unsigned long ds; long xds;
unsigned long es; long xes;
unsigned long fs; long xfs;
unsigned long gs; long xgs;
unsigned long orig_ax; long orig_eax;
unsigned long ip; long eip;
unsigned long cs; long xcs;
unsigned long flags; long eflags;
unsigned long sp; long esp;
unsigned long ss; long xss;
}; };
struct user { struct user {
struct user_regs_struct regs; struct user_regs_struct regs;