Commit 92efe192 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

types: Drop user_regs_struct_t for x86-32

We don't support x86-32 yet so no need to
carry this declaration, it's only confusing.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent 2e3c4e36
......@@ -174,27 +174,7 @@ typedef struct {
} user_fpregs_struct_t;
#else /* CONFIG_X86_64 */
typedef struct {
unsigned long bx;
unsigned long cx;
unsigned long dx;
unsigned long si;
unsigned long di;
unsigned long bp;
unsigned long ax;
unsigned long ds;
unsigned long es;
unsigned long fs;
unsigned long gs;
unsigned long orig_ax;
unsigned long ip;
unsigned long cs;
unsigned long flags;
unsigned long sp;
unsigned long ss;
} user_regs_struct_t;
# error x86-32 bit mode not yet implemented
#endif /* CONFIG_X86_64 */
#define ASSIGN_TYPED(a,b) a = (typeof(a))b
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment