Kaynağa Gözat

just use the common ptrace version

Mike Frysinger 18 yıl önce
ebeveyn
işleme
e80f02b438

+ 1 - 1
libc/sysdeps/linux/m68k/Makefile.arch

@@ -5,7 +5,7 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 #
 
-CSRC := ptrace.c brk.c __syscall_error.c syscall.c
+CSRC := brk.c __syscall_error.c syscall.c
 
 SSRC := __longjmp.S bsd-_setjmp.S bsd-setjmp.S clone.S setjmp.S vfork.S
 

+ 0 - 39
libc/sysdeps/linux/m68k/ptrace.c

@@ -1,39 +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 <errno.h>
-#include <asm/ptrace.h>
-#include <sys/syscall.h>
-
-int
-ptrace(int request, int pid, int addr, int data)
-{
-	long ret;
-	long res;
-	if (request > 0 && request < 4) data = (int)&ret;
-
-
-	__asm__ volatile ("movel %1,%/d0\n\t"
-			  "movel %2,%/d1\n\t"
-			  "movel %3,%/d2\n\t"
-			  "movel %4,%/d3\n\t"
-			  "movel %5,%/d4\n\t"
-			  "trap  #0\n\t"
-			  "movel %/d0,%0"
-		:"=g" (res)
-		:"i" (__NR_ptrace), "g" (request), "g" (pid),
-		 "g" (addr), "g" (data) : "%d0", "%d1", "%d2", "%d3", "%d4");
-
-	if (res >= 0) {
-		if (request > 0 && request < 4) {
-			__set_errno(0);
-			return (ret);
-		}
-		return (int) res;
-	}
-	__set_errno(-res);
-	return -1;
-}