Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kevin
bionic
Commits
e03950fa
Commit
e03950fa
authored
10 years ago
by
Elliott Hughes
Browse files
Options
Download
Email Patches
Plain Diff
Fix the type of u_ar0 in <sys/user.h>.
Change-Id: I9332dea60f7c60b45bc80026686c266bfa7a782c
parent
c716dd1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libc/include/sys/user.h
libc/include/sys/user.h
+3
-3
No files found.
libc/include/sys/user.h
View file @
e03950fa
...
...
@@ -91,7 +91,7 @@ struct user {
unsigned
long
start_stack
;
long
int
signal
;
int
reserved
;
unsigned
long
u_ar0
;
struct
user_regs_struct
*
u_ar0
;
struct
user_fpregs_struct
*
u_fpstate
;
unsigned
long
magic
;
char
u_comm
[
32
];
...
...
@@ -155,7 +155,7 @@ struct user {
long
int
signal
;
int
reserved
;
int
pad1
;
unsigned
long
u_ar0
;
struct
user_regs_struct
*
u_ar0
;
struct
user_fpregs_struct
*
u_fpstate
;
unsigned
long
magic
;
char
u_comm
[
32
];
...
...
@@ -175,7 +175,7 @@ struct user {
unsigned
long
start_data
;
unsigned
long
start_stack
;
long
int
signal
;
unsigned
long
u_ar0
;
void
*
u_ar0
;
unsigned
long
magic
;
char
u_comm
[
32
];
};
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment