aboutsummaryrefslogtreecommitdiff
path: root/gdb/procfs.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2001-07-06 21:31:04 +0000
committerMichael Snyder <msnyder@vmware.com>2001-07-06 21:31:04 +0000
commit7de4590493398aa30ddc7734307653700897ec3f (patch)
tree83e9e74e83f832a793e0b5a34065f67aa086e47c /gdb/procfs.c
parent002de68b31ef4c555e876fa30d1d154bc60d8e45 (diff)
downloadfsf-binutils-gdb-7de4590493398aa30ddc7734307653700897ec3f.zip
fsf-binutils-gdb-7de4590493398aa30ddc7734307653700897ec3f.tar.gz
fsf-binutils-gdb-7de4590493398aa30ddc7734307653700897ec3f.tar.bz2
2001-07-06 Michael Snyder <msnyder@redhat.com>
* procfs.c (procfs_resume): Silence noisy warning.
Diffstat (limited to 'gdb/procfs.c')
-rw-r--r--gdb/procfs.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/procfs.c b/gdb/procfs.c
index 5a91ed8..990130c 100644
--- a/gdb/procfs.c
+++ b/gdb/procfs.c
@@ -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)
{