From 0b1d1571cb490bb4831f580f7a28e7debce83451 Mon Sep 17 00:00:00 2001 From: Keith Seitz Date: Wed, 4 Sep 2002 20:18:31 +0000 Subject: [PATCH] * thread.c (do_captured_list_thread_ids): Call prune_threads and target_find_new_threads. --- gdb/ChangeLog | 5 +++++ gdb/thread.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8b6945d85c6..66da24de954 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-09-04 Keith Seitz + + * thread.c (do_captured_list_thread_ids): Call prune_threads + and target_find_new_threads. + 2002-08-29 Keith Seitz * gdb-events.sh (context_changed): Rename to selected_thread_changed diff --git a/gdb/thread.c b/gdb/thread.c index caa4961f30b..4fac1331495 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -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) -- 2.47.2