2004-09-29 Andrew Cagney <cagney@gnu.org>
authorAndrew Cagney <cagney@redhat.com>
Wed, 29 Sep 2004 15:55:55 +0000 (15:55 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 29 Sep 2004 15:55:55 +0000 (15:55 +0000)
* 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.

gdb/ChangeLog
gdb/infptrace.c
gdb/inftarg.c
gdb/linux-nat.c

index 1f7947f74be62f9628bff1dde6571a03bd45ac23..060cac993046f942d973a902c18dc5b460625d3a 100644 (file)
@@ -1,3 +1,10 @@
+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.
+
 2004-09-29  Andrew Cagney  <cagney@gnu.org>
 
        * target.h (struct target_ops): Delete field to_post_wait.
index 242872244ae14a53da4575dcc5c3a3f56fd4836c..1db795bbddfe5f5468ba927938b11efd155f914e 100644 (file)
@@ -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 */
index 72385760304a141ebb88ad7228ded3bd1d1422a9..e0b6a31e278e9fb10a0931a71a68ab556fbd5f68 100644 (file)
@@ -113,7 +113,7 @@ child_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
                                   attached process. */
       set_sigio_trap ();
 
-      pid = ptrace_wait (inferior_ptid, &status);
+      pid = wait (&status);
 
       save_errno = errno;
 
index 88e8cb30e303c55527dc3e23262f8cb1df69d2c7..8ceb1e71bd9c90f5492b7c265f79710685568da8 100644 (file)
@@ -522,12 +522,12 @@ kill_inferior (void)
       || last.kind == TARGET_WAITKIND_VFORKED)
     {
       ptrace (PT_KILL, last.value.related_pid, 0, 0);
-      ptrace_wait (null_ptid, &status);
+      wait (&status);
     }
 
   /* Kill the current process.  */
   ptrace (PT_KILL, pid, 0, 0);
-  ret = ptrace_wait (null_ptid, &status);
+  ret = wait (&status);
 
   /* We might get a SIGCHLD instead of an exit status.  This is
      aggravated by the first kill above - a child has just died.  */
@@ -535,7 +535,7 @@ kill_inferior (void)
   while (ret == pid && WIFSTOPPED (status))
     {
       ptrace (PT_KILL, pid, 0, 0);
-      ret = ptrace_wait (null_ptid, &status);
+      ret = wait (&status);
     }
 
   target_mourn_inferior ();