From 12cecc8261e8da2703bbeb3f6bd1c933a475ca9c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 10 Jan 2006 02:06:25 +0000 Subject: more fixes by Thomas Chou in Bug 618 --- libc/sysdeps/linux/nios2/vfork.S | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'libc/sysdeps/linux/nios2/vfork.S') diff --git a/libc/sysdeps/linux/nios2/vfork.S b/libc/sysdeps/linux/nios2/vfork.S index a19a90023..d75edcec9 100644 --- a/libc/sysdeps/linux/nios2/vfork.S +++ b/libc/sysdeps/linux/nios2/vfork.S @@ -9,23 +9,20 @@ * * Written by Wentao Xu */ -#include -#ifndef __NR_vfork -#define __NR_vfork __NR_fork /* uClinux-2.0 only has fork which is vfork */ -#endif +#include + +#define _ERRNO_H +#include +#include + +#ifdef __NR_fork +.text +.global __vfork +.hidden __vfork +.type __vfork,%function +.align 4 - .text - .balign 4 - .globl errno - .globl vfork - .globl __libc_vfork -#if defined __HAVE_ELF__ - .type vfork,@function - .type __libc_vfork,@function -#endif -vfork: -__libc_vfork: movui r2, TRAP_ID_SYSCALL movui r3, __NR_vfork trap @@ -51,3 +48,6 @@ fix_errno: addi sp, sp, 8 ret +.size __vfork,.-__vfork +strong_alias(__vfork,vfork) +#endif -- cgit v1.2.3