summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/cris
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-05-14 03:58:03 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:44 +0200
commitcd7f8b02a26b2221ffa3e9fa097de749b19d67d2 (patch)
treefd9ef309079a0055c8032026d66629f02969f08a /libc/sysdeps/linux/cris
parentd6f8248cc33263cd78b9cad33e80e4ed8643fb6b (diff)
remove cris/fork.c, unused
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/cris')
-rw-r--r--libc/sysdeps/linux/cris/fork.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/libc/sysdeps/linux/cris/fork.c b/libc/sysdeps/linux/cris/fork.c
deleted file mode 100644
index 7aff48974..000000000
--- a/libc/sysdeps/linux/cris/fork.c
+++ /dev/null
@@ -1,22 +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 "sysdep.h"
-
-#if defined __NR_fork && defined __ARCH_USE_MMU__
-# include <cancel.h>
-
-SYSCALL__ (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");
-
-lt_strong_alias(fork)
-lt_libc_hidden(fork)
-#endif