2001-07-06 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Fri, 6 Jul 2001 21:31:04 +0000 (21:31 +0000)
committerMichael Snyder <msnyder@vmware.com>
Fri, 6 Jul 2001 21:31:04 +0000 (21:31 +0000)
* procfs.c (procfs_resume): Silence noisy warning.

gdb/ChangeLog
gdb/procfs.c

index f1874156bc420c4d10e2c549a971173e643ceae6..3f969be9581e1e50eac9a3d03b53ad2d5f6ff075 100644 (file)
@@ -1,3 +1,7 @@
+2001-07-06  Michael Snyder  <msnyder@redhat.com>
+
+       * procfs.c (procfs_resume): Silence noisy warning.
+
 2001-06-12  Michael Snyder  <msnyder@redhat.com>
 
        * lin-lwp.c: Prevent thread starvation by using a monte carlo 
index 5a91ed887fe853a596612ed6227c819568604441..990130c680fd4701eeb2134642977e01de45e3c4 100644 (file)
@@ -4535,10 +4535,7 @@ procfs_resume (ptid_t ptid, int step, enum target_signal signo)
     {
       /* Resume a specific thread, presumably suppressing the others. */
       thread = find_procinfo (PIDGET (ptid), TIDGET (ptid));
-      if (thread == NULL)
-       warning ("procfs: resume can't find thread %ld -- resuming all.",
-                TIDGET (ptid));
-      else
+      if (thread != NULL)
        {
          if (thread->tid != 0)
            {
This page took 0.031016 seconds and 4 git commands to generate.