From a0446356a9b382bc52504442731cd0d7a6d937eb Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 3 Jul 2002 03:23:20 +0000 Subject: Fix clone so it compiles -Erik --- libc/sysdeps/linux/mips/clone.S | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 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 6f6a6c5b7..4091f6b65 100644 --- a/libc/sysdeps/linux/mips/clone.S +++ b/libc/sysdeps/linux/mips/clone.S @@ -21,14 +21,21 @@ and invokes a function in the right context after its all over. */ #include -#include +#include #define _ERRNO_H 1 #include +#include /* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */ .text -NESTED(__clone,4*SZREG,sp) +.globl __clone ; + .align 2; + .type __clone,@function; + .ent __clone, 0; + +__clone: + .frame sp, 4*SZREG, sp #ifdef __PIC__ .set noreorder .cpload $25 @@ -66,7 +73,7 @@ NESTED(__clone,4*SZREG,sp) /* Successful return from the parent */ addiu sp,32 - ret + j $31 ; nop /* Something bad happened -- no child created */ error: @@ -77,13 +84,17 @@ error: #else j __syscall_error #endif - END(__clone) + .end __clone /* Load up the arguments to the function. Put this block of code in its own function so that we can terminate the stack trace with our debug info. */ -ENTRY(__thread_start) +.globl __thread_start; + .align 2; + .ent __thread_start, 0; + +__thread_start: /* cp is already loaded. */ .cprestore 16 /* The stackframe has been created on entry of clone(). */ @@ -102,6 +113,7 @@ ENTRY(__thread_start) #else jal _exit #endif - END(__thread_start) + .end __thread_start -weak_alias(__clone, clone) +.weak clone; + clone = __clone -- cgit v1.2.3