Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
development
Commits
435a7da6
Commit
435a7da6
authored
12 years ago
by
Andrew Hsieh
Committed by
android code review
12 years ago
Browse files
Options
Download
Plain Diff
Merge "Fix SEGV when unwinding stack pasts __libc_init"
parents
568cb2b2
556182fe
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
2 deletions
+10
-2
ndk/platforms/android-3/arch-arm/src/crtbegin_dynamic.S
ndk/platforms/android-3/arch-arm/src/crtbegin_dynamic.S
+3
-1
ndk/platforms/android-3/arch-arm/src/crtbegin_static.S
ndk/platforms/android-3/arch-arm/src/crtbegin_static.S
+3
-1
ndk/platforms/android-9/arch-mips/src/crtbegin_dynamic.S
ndk/platforms/android-9/arch-mips/src/crtbegin_dynamic.S
+2
-0
ndk/platforms/android-9/arch-mips/src/crtbegin_static.S
ndk/platforms/android-9/arch-mips/src/crtbegin_static.S
+2
-0
No files found.
ndk/platforms/android-3/arch-arm/src/crtbegin_dynamic.S
View file @
435a7da6
...
...
@@ -53,7 +53,9 @@ _start:
ldr
r2
,
=
main
adr
r3
,
1
f
ldr
r4
,
=
__libc_init
bx
r4
blx
r4
mov
r0
,
#
0
bx
r0
1
:
.
long
__PREINIT_ARRAY__
.
long
__INIT_ARRAY__
...
...
This diff is collapsed.
Click to expand it.
ndk/platforms/android-3/arch-arm/src/crtbegin_static.S
View file @
435a7da6
...
...
@@ -53,7 +53,9 @@ _start:
ldr
r2
,
=
main
adr
r3
,
1
f
ldr
r4
,
=
__libc_init
bx
r4
blx
r4
mov
r0
,
#
0
bx
r0
1
:
.
long
__PREINIT_ARRAY__
.
long
__INIT_ARRAY__
...
...
This diff is collapsed.
Click to expand it.
ndk/platforms/android-9/arch-mips/src/crtbegin_dynamic.S
View file @
435a7da6
...
...
@@ -64,6 +64,8 @@ _start:
la
$a3
,
1
f
subu
$sp
,
32
la
$t9
,
__libc_init
jalr
$t9
move
$t9
,
$
0
j
$t9
.
end
__start
...
...
This diff is collapsed.
Click to expand it.
ndk/platforms/android-9/arch-mips/src/crtbegin_static.S
View file @
435a7da6
...
...
@@ -64,6 +64,8 @@ _start:
la
$a3
,
1
f
subu
$sp
,
32
la
$t9
,
__libc_init
jalr
$t9
move
$t9
,
$
0
j
$t9
.
end
__start
...
...
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