summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/cris/fork.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-02-15 09:02:54 +0000
committerEric Andersen <andersen@codepoet.org>2004-02-15 09:02:54 +0000
commitd3c240368b0b0babdcba9cb43f14e32dad2a6008 (patch)
tree1dec102921c6e7be9f805203ba57204121641430 /libc/sysdeps/linux/cris/fork.c
parent084192da07a63fdde5253262b9c5b101a23a26ee (diff)
Fixup fork implementation to provide the __libc_fork symbol
Diffstat (limited to 'libc/sysdeps/linux/cris/fork.c')
-rw-r--r--libc/sysdeps/linux/cris/fork.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/cris/fork.c b/libc/sysdeps/linux/cris/fork.c
index 5ca8a723f..0399edce8 100644
--- a/libc/sysdeps/linux/cris/fork.c
+++ b/libc/sysdeps/linux/cris/fork.c
@@ -1,10 +1,12 @@
#include <sysdep.h>
-SYSCALL__ (fork, 0)
+#define __NR___libc_fork __NR_fork
+SYSCALL__ (__libc_fork, 0)
/* R1 is now 0 for the parent and 1 for the child. Decrement it to
make it -1 (all bits set) for the parent, and 0 (no bits set)
for the child. Then AND it with R0, so the parent gets
R0&-1==R0, and the child gets R0&0==0. */
/* i dunno what the blurb above is useful for. we just return. */
__asm__("ret\n\tnop");
+weak_alias(__libc_fork, fork);