summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sh
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-07-09 15:10:56 -0400
committerMike Frysinger <vapier@gentoo.org>2009-07-09 15:11:46 -0400
commitc06402cccc4c6278d762900e6a205394638d9c22 (patch)
tree646c8fa6c7ca9f3d748d448b6f4c18bc5971c8ae /libc/sysdeps/linux/sh
parent763bbf9e9a27426c9be8322dca5ddf2cb4dbc464 (diff)
syscall(): create a common version based on INLINE_SYSCALL_NCS()
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/sh')
-rw-r--r--libc/sysdeps/linux/sh/Makefile.arch2
-rw-r--r--libc/sysdeps/linux/sh/syscall.c27
2 files changed, 1 insertions, 28 deletions
diff --git a/libc/sysdeps/linux/sh/Makefile.arch b/libc/sysdeps/linux/sh/Makefile.arch
index 2c69f59b8..6df516286 100644
--- a/libc/sysdeps/linux/sh/Makefile.arch
+++ b/libc/sysdeps/linux/sh/Makefile.arch
@@ -7,7 +7,7 @@
#
CSRC := \
- mmap.c pipe.c __init_brk.c brk.c sbrk.c syscall.c pread_write.c cacheflush.c
+ mmap.c pipe.c __init_brk.c brk.c sbrk.c pread_write.c cacheflush.c
SSRC := setjmp.S __longjmp.S vfork.S clone.S ___fpscr_values.S
diff --git a/libc/sysdeps/linux/sh/syscall.c b/libc/sysdeps/linux/sh/syscall.c
deleted file mode 100644
index ba187c9b7..000000000
--- a/libc/sysdeps/linux/sh/syscall.c
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-#include <features.h>
-#include <errno.h>
-#include <sys/types.h>
-#include <sys/syscall.h>
-
-long syscall(long sysnum,
- long arg1, long arg2, long arg3,
- long arg4, long arg5, long arg6)
-{
-register long __sc3 __asm__ ("r3") = sysnum;
-register long __sc4 __asm__ ("r4") = (long) arg1;
-register long __sc5 __asm__ ("r5") = (long) arg2;
-register long __sc6 __asm__ ("r6") = (long) arg3;
-register long __sc7 __asm__ ("r7") = (long) arg4;
-register long __sc0 __asm__ ("r0") = (long) arg5;
-register long __sc1 __asm__ ("r1") = (long) arg6;
-__asm__ __volatile__ (
- "trapa %1"
- : "=z" (__sc0) \
- : "i" (__SH_SYSCALL_TRAP_BASE + 6),
- "0" (__sc0), "r" (__sc4), "r" (__sc5), "r" (__sc6), "r" (__sc7), \
- "r" (__sc3), "r" (__sc1) \
- : "memory" );
-__syscall_return(long,__sc0);
-}