summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips64
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-06-06 15:18:54 -0700
committerElliott Hughes <enh@google.com>2014-06-06 15:18:54 -0700
commitebc8cd117a562f387c52ed4e1aeba0fb21f33194 (patch)
treef271f020ad489e0c6dddb6c2f4135963f8bec9bd /libc/arch-mips64
parentb837767a63dfc65653448cf732090d7d0b270080 (diff)
downloadbionic-ebc8cd117a562f387c52ed4e1aeba0fb21f33194.zip
bionic-ebc8cd117a562f387c52ed4e1aeba0fb21f33194.tar.gz
bionic-ebc8cd117a562f387c52ed4e1aeba0fb21f33194.tar.bz2
Rename __bionic_clone_entry to __start_thread.
This seems a bit less obscure. Change-Id: I7dc528c253b73c861694f67556ad8f919bf92136
Diffstat (limited to 'libc/arch-mips64')
-rw-r--r--libc/arch-mips64/bionic/__bionic_clone.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-mips64/bionic/__bionic_clone.S b/libc/arch-mips64/bionic/__bionic_clone.S
index 8687906..4f053f9 100644
--- a/libc/arch-mips64/bionic/__bionic_clone.S
+++ b/libc/arch-mips64/bionic/__bionic_clone.S
@@ -78,10 +78,10 @@ LEAF(__bionic_clone, FRAMESZ)
# Clear return address in child so we don't unwind further.
li ra,0
- # void __bionic_clone_entry(int (*func)(void*), void *arg)
+ # void __start_thread(int (*func)(void*), void *arg)
PTR_L a0,FRAME_FN(sp) # fn
PTR_L a1,FRAME_ARG(sp) # arg
- LA t9,__bionic_clone_entry
+ LA t9,__start_thread
RESTORE_GP64
/*
* For O32 etc the child stack must have space for a0..a3 to be stored