aboutsummaryrefslogtreecommitdiff
path: root/gdb/infptrace.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-09-29 15:55:55 +0000
committerAndrew Cagney <cagney@redhat.com>2004-09-29 15:55:55 +0000
commitee21b650be3203a6ace921530e694ef045613d0a (patch)
treed954e745ecadcf75b128ab9cfac1d63edd05c8e1 /gdb/infptrace.c
parenta182eed6e25da26d08047ce884748547da0c0b36 (diff)
downloadfsf-binutils-gdb-ee21b650be3203a6ace921530e694ef045613d0a.zip
fsf-binutils-gdb-ee21b650be3203a6ace921530e694ef045613d0a.tar.gz
fsf-binutils-gdb-ee21b650be3203a6ace921530e694ef045613d0a.tar.bz2
2004-09-29 Andrew Cagney <cagney@gnu.org>
* infptrace.c (ptrace_wait): Mention problem with HPUX. (kill_inferior): Inline ptrace_wait call. * linux-nat.c (kill_inferior): Inline ptrace_wait call. * inftarg.c (child_wait): Inline ptrace_wait call.
Diffstat (limited to 'gdb/infptrace.c')
-rw-r--r--gdb/infptrace.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/infptrace.c b/gdb/infptrace.c
index 2428722..1db795b 100644
--- a/gdb/infptrace.c
+++ b/gdb/infptrace.c
@@ -138,6 +138,10 @@ call_ptrace (int request, int pid, PTRACE_ARG3_TYPE addr, int data)
/* Wait for a process to finish, possibly running a target-specific
hook before returning. */
+/* NOTE: cagney: 2004-09-29: Dependant on the native configuration,
+ "hppah-nat.c" may either call this or infttrace.c's implementation
+ of ptrace_wait. See "hppahpux.mh". */
+
int
ptrace_wait (ptid_t ptid, int *status)
{
@@ -170,7 +174,7 @@ 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. */
ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3) 0, 0);
- ptrace_wait (null_ptid, &status);
+ wait (status);
target_mourn_inferior ();
}
#endif /* DEPRECATED_KILL_INFERIOR */