From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28117 invoked by alias); 20 Dec 2002 03:37:47 -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 28109 invoked from network); 20 Dec 2002 03:37:46 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by 209.249.29.67 with SMTP; 20 Dec 2002 03:37:46 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id gBK3BEg19441 for ; Thu, 19 Dec 2002 22:11:14 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gBK3bY203373; Thu, 19 Dec 2002 22:37:35 -0500 Received: from localhost.redhat.com (romulus-int.sfbay.redhat.com [172.16.27.46]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gBK3bWL14485; Thu, 19 Dec 2002 22:37:32 -0500 Received: by localhost.redhat.com (Postfix, from userid 469) id 91C6AFF79; Thu, 19 Dec 2002 22:41:57 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15874.37253.422473.454147@localhost.redhat.com> Date: Thu, 19 Dec 2002 20:29:00 -0000 To: Mark Kettenis Cc: ezannoni@redhat.com, msnyder@redhat.com, gdb-patches@sources.redhat.com Subject: Re: [RFA] Fix gdb/669 (fwd) In-Reply-To: <200211082007.gA8K7HsM000813@elgar.kettenis.dyndns.org> References: <15818.32656.175772.61561@localhost.redhat.com> <200211082007.gA8K7HsM000813@elgar.kettenis.dyndns.org> X-SW-Source: 2002-12/txt/msg00575.txt.bz2 Sigh, forgot all about this one, committed now. Elena Mark Kettenis writes: > 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) > >