From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27528 invoked by alias); 8 Nov 2002 20:07:31 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 27521 invoked from network); 8 Nov 2002 20:07:27 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (62.163.169.250) by sources.redhat.com with SMTP; 8 Nov 2002 20:07:27 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6/8.12.5) with ESMTP id gA8K7HRs000512; Fri, 8 Nov 2002 21:07:17 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6/8.12.6) with ESMTP id gA8K7HkQ000816; Fri, 8 Nov 2002 21:07:17 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6/8.12.6/Submit) id gA8K7HsM000813; Fri, 8 Nov 2002 21:07:17 +0100 (CET) Date: Fri, 08 Nov 2002 12:07:00 -0000 Message-Id: <200211082007.gA8K7HsM000813@elgar.kettenis.dyndns.org> From: Mark Kettenis To: ezannoni@redhat.com CC: msnyder@redhat.com, gdb-patches@sources.redhat.com In-reply-to: <15818.32656.175772.61561@localhost.redhat.com> (message from Elena Zannoni on Thu, 7 Nov 2002 09:58:24 -0500) Subject: Re: [RFA] Fix gdb/669 (fwd) References: <15818.32656.175772.61561@localhost.redhat.com> X-SW-Source: 2002-11/txt/msg00239.txt.bz2 From: Elena Zannoni Date: Thu, 7 Nov 2002 09:58:24 -0500 re-ping..... > 2002-09-05 Keith Seitz > > * thread.c (do_captured_list_thread_ids): Call prune_threads and > target_find_new_threads. This patch is OK although... > Patch > Index: thread.c > =================================================================== > RCS file: /cvs/src/src/gdb/thread.c,v > retrieving revision 1.23 > diff -p -r1.23 thread.c > *** thread.c 2 Aug 2002 20:51:21 -0000 1.23 > --- thread.c 24 Sep 2002 19:32:40 -0000 > *************** do_captured_list_thread_ids (struct ui_o > *** 262,267 **** > --- 262,269 ---- > struct thread_info *tp; > int num = 0; > > + prune_threads (); > + target_find_new_threads (); ... I'd prefer a blank line here. > ui_out_tuple_begin (uiout, "thread-ids"); > > for (tp = thread_list; tp; tp = tp->next) >