From b49448b3552eb64e3776c5c778e40d3b58bb116b Mon Sep 17 00:00:00 2001 From: kettenis Date: Fri, 24 Sep 2004 19:00:40 +0000 Subject: [PATCH] * inf-ptrace.c (inf_ptrace_kill_inferior): Call ptrace directly instead of call_ptrace. Call wait directly instead of ptrace_wait. (inf_ptrace_me): Call ptrace directly instead of call_ptrace. (inf_ptrace_wait): Inline ptrace_wait call. --- gdb/ChangeLog | 8 ++++++++ gdb/inf-ptrace.c | 9 +++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b57ffa8ff3..74a0283f1b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2004-09-24 Mark Kettenis + + * inf-ptrace.c (inf_ptrace_kill_inferior): Call ptrace directly + instead of call_ptrace. Call wait directly instead of + ptrace_wait. + (inf_ptrace_me): Call ptrace directly instead of call_ptrace. + (inf_ptrace_wait): Inline ptrace_wait call. + 2004-09-24 Paul Hilfinger * Makefile.in (.y.c): Revert previous change. ../ylwrap was diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index 9e07706ba1..d361d76b48 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -55,8 +55,8 @@ inf_ptrace_kill_inferior (void) The kill call causes problems under hpux10, so it's been removed; if this causes problems we'll deal with them as they arise. */ - call_ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3) 0, 0); - ptrace_wait (null_ptid, &status); + ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3) 0, 0); + wait (&status); target_mourn_inferior (); } @@ -255,7 +255,8 @@ inf_ptrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus) attached process. */ set_sigio_trap (); - pid = ptrace_wait (inferior_ptid, &status); + pid = wait (&status); + target_post_wait (pid_to_ptid (pid), status); save_errno = errno; @@ -433,7 +434,7 @@ static void inf_ptrace_me (void) { /* "Trace me, Dr. Memory!" */ - call_ptrace (0, 0, (PTRACE_TYPE_ARG3) 0, 0); + ptrace (0, 0, (PTRACE_TYPE_ARG3) 0, 0); } /* Stub function which causes the GDB that runs it, to start ptrace-ing -- 2.11.0