[uClibc-cvs] uClibc/libc/sysdeps/linux/cris fork.c,1.1,1.2
Erik Andersen
andersen at uclibc.org
Sun Feb 15 09:02:56 UTC 2004
Update of /var/cvs/uClibc/libc/sysdeps/linux/cris
In directory nail:/tmp/cvs-serv24527/cris
Modified Files:
fork.c
Log Message:
Fixup fork implementation to provide the __libc_fork symbol
Index: fork.c
===================================================================
RCS file: /var/cvs/uClibc/libc/sysdeps/linux/cris/fork.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- fork.c 16 Sep 2002 08:08:33 -0000 1.1
+++ fork.c 15 Feb 2004 09:02:54 -0000 1.2
@@ -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);
More information about the uClibc-cvs
mailing list