summaryrefslogtreecommitdiff
path: root/arch/arm/bits/user.h
blob: c533fd8da84ac4fbfb37bf87f8c69fb3461e0fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
struct user_fpregs_struct
{
	struct fp_reg {
		unsigned sign1:1;
		unsigned unused:15;
		unsigned sign2:1;
		unsigned exponent:14;
		unsigned j:1;
		unsigned mantissa1:31;
		unsigned mantissa0:32;
	} fpregs[8];
	unsigned fpsr:32;
	unsigned fpcr:32;
	unsigned char ftype[8];
	unsigned int init_flag;
};

struct user_regs_struct
{
	unsigned long uregs[18];
};

struct user
{
	struct user_regs_struct		regs;
	int				u_fpvalid;
	unsigned long			u_tsize;
	unsigned long			u_dsize;
	unsigned long			u_ssize;
	unsigned long			start_code;
	unsigned long			start_stack;
	long				signal;
	int				reserved;
	struct user_regs_struct		*u_ar0;
	unsigned long int		magic;
	char				u_comm[32];
	int				u_debugreg[8];
	struct user_fpregs_struct	u_fp;
	struct user_fpregs_struct	*u_fp0;
};