From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17632 invoked by alias); 7 Nov 2002 15:02:33 -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 17607 invoked from network); 7 Nov 2002 15:02:32 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 7 Nov 2002 15:02:32 -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 gA7Edow04943 for ; Thu, 7 Nov 2002 09:39:50 -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 gA7F2Vf18590; Thu, 7 Nov 2002 10:02:31 -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 gA7F2UT11809; Thu, 7 Nov 2002 10:02:30 -0500 Received: by localhost.redhat.com (Postfix, from userid 469) id 4AB8EFF79; Thu, 7 Nov 2002 09:58:24 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15818.32656.175772.61561@localhost.redhat.com> Date: Thu, 07 Nov 2002 07:02:00 -0000 To: msnyder@redhat.com Cc: gdb-patches@sources.redhat.com, kettenis@chello.nl Subject: Re: [RFA] Fix gdb/669 (fwd) In-Reply-To: References: X-SW-Source: 2002-11/txt/msg00172.txt.bz2 re-ping..... Keith Seitz writes: > Ping. > > ---------- Forwarded message ---------- > Date: Tue, 24 Sep 2002 12:42:24 -0700 (PDT) > From: Keith Seitz > To: gdb-patches@sources.redhat.com > Subject: [RFA] Fix gdb/669 > > Hi, > > This patch fixes gdb/669, which demonstrates that the MI command > "thread-list-ids" and the console's "info thread" get out of sync. > > This is caused by the MI command not following the console command, which > prunes old threads and looks for new ones when it is called. > > Keith > > ChangeLog > 2002-09-05 Keith Seitz > > * thread.c (do_captured_list_thread_ids): Call prune_threads and > target_find_new_threads. > > 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 (); > ui_out_tuple_begin (uiout, "thread-ids"); > > for (tp = thread_list; tp; tp = tp->next) >