Merge "Don't use __u64/__u32 in <sys/user.h>."

This commit is contained in:
Treehugger Robot 2016-05-26 00:19:14 +00:00 committed by Gerrit Code Review
commit 8c2467ae07
1 changed files with 7 additions and 7 deletions

View File

@ -109,13 +109,13 @@ struct user_fpregs_struct {
unsigned short swd; unsigned short swd;
unsigned short ftw; unsigned short ftw;
unsigned short fop; unsigned short fop;
__u64 rip; unsigned long rip;
__u64 rdp; unsigned long rdp;
__u32 mxcsr; unsigned int mxcsr;
__u32 mxcr_mask; unsigned int mxcr_mask;
__u32 st_space[32]; unsigned int st_space[32];
__u32 xmm_space[64]; unsigned int xmm_space[64];
__u32 padding[24]; unsigned int padding[24];
}; };
struct user_regs_struct { struct user_regs_struct {
unsigned long r15; unsigned long r15;