]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* thread.c (do_captured_list_thread_ids): Call prune_threads
authorKeith Seitz <keiths@redhat.com>
Wed, 4 Sep 2002 20:18:31 +0000 (20:18 +0000)
committerKeith Seitz <keiths@redhat.com>
Wed, 4 Sep 2002 20:18:31 +0000 (20:18 +0000)
        and target_find_new_threads.

gdb/ChangeLog
gdb/thread.c

index 8b6945d85c647b4d440129e2013997a1ebcc1faf..66da24de95408ed95142513f81bd62545da77fe7 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-04  Keith Seitz  <keiths@redhat.com>
+
+       * thread.c (do_captured_list_thread_ids): Call prune_threads
+       and target_find_new_threads.
+
 2002-08-29  Keith Seitz  <keiths@redhat.com>
 
        * gdb-events.sh (context_changed): Rename to selected_thread_changed
index caa4961f30b2e495e14fcfb80caeb1c0085be0a2..4fac13314956c4b349858673f65b06b38769eef2 100644 (file)
@@ -262,6 +262,9 @@ do_captured_list_thread_ids (struct ui_out *uiout,
   struct thread_info *tp;
   int num = 0;
 
+  prune_threads ();
+  target_find_new_threads ();
+
   ui_out_list_begin (uiout, "thread-ids");
 
   for (tp = thread_list; tp; tp = tp->next)