From: Mark Kettenis Date: Wed, 11 Aug 2004 09:17:39 +0000 (+0000) Subject: * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5 X-Git-Tag: csl-arm-2004-q3~526 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=daa98270063506c799496877db365320179e369b;p=thirdparty%2Fbinutils-gdb.git * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5 instead of FIVE_ARG_PTRACE. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 45abe47e3a2..5f33f8f043d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2004-08-11 Mark Kettenis + * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5 + instead of FIVE_ARG_PTRACE. + * inflow.c (O_NOCTTY): Define to zero if not already defined. (new_tty): Use O_NOCTTY unconditionally. diff --git a/gdb/infptrace.c b/gdb/infptrace.c index 11fe2710376..60c4198ff08 100644 --- a/gdb/infptrace.c +++ b/gdb/infptrace.c @@ -122,7 +122,7 @@ call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data) if (request == PT_SETTRC) { errno = 0; -#if !defined (FIVE_ARG_PTRACE) +#ifndef PTRACE_TYPE_ARG5 pt_status = ptrace (PT_SETTRC, pid, addr, data); #else /* Deal with HPUX 8.0 braindamage. We never use the @@ -159,7 +159,7 @@ call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data) saved_errno = errno; errno = 0; #endif -#if !defined (FIVE_ARG_PTRACE) +#ifndef PTRACE_TYPE_ARG5 pt_status = ptrace (request, pid, addr, data); #else /* Deal with HPUX 8.0 braindamage. We never use the @@ -178,7 +178,7 @@ call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data) } -#if defined (DEBUG_PTRACE) || defined (FIVE_ARG_PTRACE) +#if defined (DEBUG_PTRACE) || defined (PTRACE_TYPE_ARG5) /* For the rest of the file, use an extra level of indirection */ /* This lets us breakpoint usefully on call_ptrace. */ #define ptrace call_ptrace