From e6dfae8b06bd4f7950032c4571cd3a98a73f314d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 29 Jan 2006 16:43:10 +0000 Subject: make sure clone/__clone are created properly --- libc/sysdeps/linux/mips/clone.S | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libc/sysdeps/linux/mips/clone.S') diff --git a/libc/sysdeps/linux/mips/clone.S b/libc/sysdeps/linux/mips/clone.S index c04b11b2a..e7be7d586 100644 --- a/libc/sysdeps/linux/mips/clone.S +++ b/libc/sysdeps/linux/mips/clone.S @@ -30,12 +30,12 @@ /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */ .text -.globl clone ; +.globl __clone ; .align 2; - .type clone,@function; - .ent clone, 0; + .type __clone,@function; + .ent __clone, 0; -clone: +__clone: .frame sp, 4*SZREG, sp #ifdef __PIC__ .set noreorder @@ -109,3 +109,5 @@ __thread_start: move a0,v0 jal HIDDEN_JUMPTARGET(_exit) .end __thread_start + +weak_alias (__clone, clone) -- cgit v1.2.3