From: Mark Kettenis Date: Sun, 15 Aug 2004 15:51:40 +0000 (+0000) Subject: * linux-nat.c (kill_inferior): Add missing third and fourth X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=de9a9e516bde02b567390b7fd448033ce655da0b;p=deliverable%2Fbinutils-gdb.git * linux-nat.c (kill_inferior): Add missing third and fourth arguments to ptrace call. Don't use PTRACE_ARG3_TYPE. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 256279098e..a7f2764343 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2004-08-15 Mark Kettenis + * linux-nat.c (kill_inferior): Add missing third and fourth + arguments to ptrace call. Don't use PTRACE_ARG3_TYPE. + * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with PTRACE_TYPE_RET. diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index e421c9ca22..15b6704229 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -500,12 +500,12 @@ kill_inferior (void) if (last.kind == TARGET_WAITKIND_FORKED || last.kind == TARGET_WAITKIND_VFORKED) { - ptrace (PT_KILL, last.value.related_pid); + ptrace (PT_KILL, last.value.related_pid, 0, 0); ptrace_wait (null_ptid, &status); } /* Kill the current process. */ - ptrace (PT_KILL, pid, (PTRACE_ARG3_TYPE) 0, 0); + ptrace (PT_KILL, pid, 0, 0); ret = ptrace_wait (null_ptid, &status); /* We might get a SIGCHLD instead of an exit status. This is @@ -513,7 +513,7 @@ kill_inferior (void) while (ret == pid && WIFSTOPPED (status)) { - ptrace (PT_KILL, pid, (PTRACE_ARG3_TYPE) 0, 0); + ptrace (PT_KILL, pid, 0, 0); ret = ptrace_wait (null_ptid, &status); }