From: Keith Seitz Date: Wed, 4 Sep 2002 20:18:31 +0000 (+0000) Subject: * thread.c (do_captured_list_thread_ids): Call prune_threads X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b1d1571cb490bb4831f580f7a28e7debce83451;p=thirdparty%2Fbinutils-gdb.git * thread.c (do_captured_list_thread_ids): Call prune_threads and target_find_new_threads. --- 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)