* hppab-nat.c: Define ptrace to call_ptrace and pass the 5th arg
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 9 Aug 1993 20:07:25 +0000 (20:07 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 9 Aug 1993 20:07:25 +0000 (20:07 +0000)
there, rather than using an ANSI C specific macro.

gdb/ChangeLog
gdb/hppab-nat.c

index 658724d857b57faffcdb63ecbcb4f8c7fa7d8a54..466d8d7f95ebcdf32efa7dbdb2b360ff737a45dd 100644 (file)
@@ -1,5 +1,8 @@
 Mon Aug  9 09:53:45 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * hppab-nat.c: Define ptrace to call_ptrace and pass the 5th arg
+       there, rather than using an ANSI C specific macro.
+
        * 29k-share/udi/udr.c: Include fcntl.h not sys/fcntl.h.  Also put
        sys/types.h near the top (just on general principles).
 
index 42fe316606d70c9d06191381e32b7d27292801f6..77f1d5723234f3ea093f502946322e1aad65571b 100644 (file)
@@ -27,13 +27,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "target.h"
 #include <sys/ptrace.h>
 
-#ifdef FIVE_ARG_PTRACE
-
-/* Deal with HPUX 8.0 braindamage.  */
-#define ptrace(a,b,c,d) ptrace(a,b,c,d,0)
-
-#endif
-
 #ifndef PT_ATTACH
 #define PT_ATTACH PTRACE_ATTACH
 #endif
@@ -52,14 +45,15 @@ call_ptrace (request, pid, addr, data)
      PTRACE_ARG3_TYPE addr;
      int data;
 {
-  return ptrace (request, pid, addr, data);
+  return ptrace (request, pid, addr, data, 0);
 }
 
-#ifdef DEBUG_PTRACE
-/* For the rest of the file, use an extra level of indirection */
-/* This lets us breakpoint usefully on call_ptrace. */
+/* Use an extra level of indirection for ptrace calls.
+   This lets us breakpoint usefully on call_ptrace.   It also
+   allows us to pass an extra argument to ptrace without
+   using an ANSI-C specific macro.  */
+
 #define ptrace call_ptrace
-#endif
 
 void
 kill_inferior ()