summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/bfin/vfork.S
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-07-23 04:03:17 -0400
committerMike Frysinger <vapier@gentoo.org>2009-07-23 04:04:22 -0400
commit711ad9f92c1cf992c4a3d9f4f709bd692be7789c (patch)
tree26d1fd479950c0beec1efe4d9ae12f4f1504aa5f /libc/sysdeps/linux/bfin/vfork.S
parent7c837e1b2d658cb45f00ef767f3ec57ba72362ae (diff)
create real common vfork() function
Rather than force people to always implement their own vfork(), have the default implementation be sane. For now, only the Blackfin port uses the new code. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/bfin/vfork.S')
-rw-r--r--libc/sysdeps/linux/bfin/vfork.S20
1 files changed, 0 insertions, 20 deletions
diff --git a/libc/sysdeps/linux/bfin/vfork.S b/libc/sysdeps/linux/bfin/vfork.S
deleted file mode 100644
index 4e9aa844e..000000000
--- a/libc/sysdeps/linux/bfin/vfork.S
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
- *
- * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- */
-
-#include <sys/syscall.h>
-
-.text
-.global ___vfork
-.hidden ___vfork
-.type ___vfork,STT_FUNC;
-.align 4
-___vfork:
- p0 = __NR_vfork;
- excpt 0;
- rts;
-.size ___vfork,.-___vfork
-weak_alias(__vfork,vfork)
-libc_hidden_weak(vfork)