* infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
instead of FIVE_ARG_PTRACE.
This commit is contained in:
parent
f2acbe1cfb
commit
daa9827006
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
2004-08-11 Mark Kettenis <kettenis@gnu.org>
|
2004-08-11 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* 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.
|
* inflow.c (O_NOCTTY): Define to zero if not already defined.
|
||||||
(new_tty): Use O_NOCTTY unconditionally.
|
(new_tty): Use O_NOCTTY unconditionally.
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,7 @@ call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data)
|
||||||
if (request == PT_SETTRC)
|
if (request == PT_SETTRC)
|
||||||
{
|
{
|
||||||
errno = 0;
|
errno = 0;
|
||||||
#if !defined (FIVE_ARG_PTRACE)
|
#ifndef PTRACE_TYPE_ARG5
|
||||||
pt_status = ptrace (PT_SETTRC, pid, addr, data);
|
pt_status = ptrace (PT_SETTRC, pid, addr, data);
|
||||||
#else
|
#else
|
||||||
/* Deal with HPUX 8.0 braindamage. We never use the
|
/* 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;
|
saved_errno = errno;
|
||||||
errno = 0;
|
errno = 0;
|
||||||
#endif
|
#endif
|
||||||
#if !defined (FIVE_ARG_PTRACE)
|
#ifndef PTRACE_TYPE_ARG5
|
||||||
pt_status = ptrace (request, pid, addr, data);
|
pt_status = ptrace (request, pid, addr, data);
|
||||||
#else
|
#else
|
||||||
/* Deal with HPUX 8.0 braindamage. We never use the
|
/* 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 */
|
/* For the rest of the file, use an extra level of indirection */
|
||||||
/* This lets us breakpoint usefully on call_ptrace. */
|
/* This lets us breakpoint usefully on call_ptrace. */
|
||||||
#define ptrace call_ptrace
|
#define ptrace call_ptrace
|
||||||
|
|
Loading…
Reference in a new issue