diff options
Diffstat (limited to 'include/asm-x86/user_32.h')
-rw-r--r-- | include/asm-x86/user_32.h | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/include/asm-x86/user_32.h b/include/asm-x86/user_32.h index 0e85d2a5e33a..ed8b8fc6906c 100644 --- a/include/asm-x86/user_32.h +++ b/include/asm-x86/user_32.h | |||
@@ -75,13 +75,23 @@ struct user_fxsr_struct { | |||
75 | * doesn't use the extra segment registers) | 75 | * doesn't use the extra segment registers) |
76 | */ | 76 | */ |
77 | struct user_regs_struct { | 77 | struct user_regs_struct { |
78 | long ebx, ecx, edx, esi, edi, ebp, eax; | 78 | unsigned long bx; |
79 | unsigned short ds, __ds, es, __es; | 79 | unsigned long cx; |
80 | unsigned short fs, __fs, gs, __gs; | 80 | unsigned long dx; |
81 | long orig_eax, eip; | 81 | unsigned long si; |
82 | unsigned short cs, __cs; | 82 | unsigned long di; |
83 | long eflags, esp; | 83 | unsigned long bp; |
84 | unsigned short ss, __ss; | 84 | unsigned long ax; |
85 | unsigned long ds; | ||
86 | unsigned long es; | ||
87 | unsigned long fs; | ||
88 | unsigned long gs; | ||
89 | unsigned long orig_ax; | ||
90 | unsigned long ip; | ||
91 | unsigned long cs; | ||
92 | unsigned long flags; | ||
93 | unsigned long sp; | ||
94 | unsigned long ss; | ||
85 | }; | 95 | }; |
86 | 96 | ||
87 | /* When the kernel dumps core, it starts by dumping the user struct - | 97 | /* When the kernel dumps core, it starts by dumping the user struct - |