am ab0b0cdf
: Merge "Finish <sys/user.h>."
* commit 'ab0b0cdf1b07eb25ad89e0de08d4b3fd453602fe': Finish <sys/user.h>.
This commit is contained in:
commit
c566f35af4
@ -79,7 +79,7 @@ struct user_regs_struct {
|
|||||||
unsigned long sp;
|
unsigned long sp;
|
||||||
unsigned long ss;
|
unsigned long ss;
|
||||||
};
|
};
|
||||||
struct user{
|
struct user {
|
||||||
struct user_regs_struct regs;
|
struct user_regs_struct regs;
|
||||||
int u_fpvalid;
|
int u_fpvalid;
|
||||||
struct user_i387_struct i387;
|
struct user_i387_struct i387;
|
||||||
@ -91,7 +91,7 @@ struct user{
|
|||||||
long int signal;
|
long int signal;
|
||||||
int reserved;
|
int reserved;
|
||||||
unsigned long u_ar0;
|
unsigned long u_ar0;
|
||||||
struct user_i387_struct *u_fpstate;
|
struct user_i387_struct* u_fpstate;
|
||||||
unsigned long magic;
|
unsigned long magic;
|
||||||
char u_comm[32];
|
char u_comm[32];
|
||||||
int u_debugreg[8];
|
int u_debugreg[8];
|
||||||
@ -155,7 +155,7 @@ struct user {
|
|||||||
int reserved;
|
int reserved;
|
||||||
int pad1;
|
int pad1;
|
||||||
unsigned long u_ar0;
|
unsigned long u_ar0;
|
||||||
struct user_i387_struct *u_fpstate;
|
struct user_i387_struct* u_fpstate;
|
||||||
unsigned long magic;
|
unsigned long magic;
|
||||||
char u_comm[32];
|
char u_comm[32];
|
||||||
unsigned long u_debugreg[8];
|
unsigned long u_debugreg[8];
|
||||||
@ -196,7 +196,16 @@ struct user_fp {
|
|||||||
unsigned char ftype[8];
|
unsigned char ftype[8];
|
||||||
unsigned int init_flag;
|
unsigned int init_flag;
|
||||||
};
|
};
|
||||||
struct user{
|
struct user_vfp {
|
||||||
|
unsigned long long fpregs[32];
|
||||||
|
unsigned long fpscr;
|
||||||
|
};
|
||||||
|
struct user_vfp_exc {
|
||||||
|
unsigned long fpexc;
|
||||||
|
unsigned long fpinst;
|
||||||
|
unsigned long fpinst2;
|
||||||
|
};
|
||||||
|
struct user {
|
||||||
struct pt_regs regs;
|
struct pt_regs regs;
|
||||||
int u_fpvalid;
|
int u_fpvalid;
|
||||||
unsigned long int u_tsize;
|
unsigned long int u_tsize;
|
||||||
@ -211,7 +220,7 @@ struct user{
|
|||||||
char u_comm[32];
|
char u_comm[32];
|
||||||
int u_debugreg[8];
|
int u_debugreg[8];
|
||||||
struct user_fp u_fp;
|
struct user_fp u_fp;
|
||||||
struct user_fp_struct * u_fp0;
|
struct user_fp_struct* u_fp0;
|
||||||
};
|
};
|
||||||
|
|
||||||
#elif defined(__aarch64__)
|
#elif defined(__aarch64__)
|
||||||
|
Loading…
Reference in New Issue
Block a user