From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2512 invoked by alias); 2 Dec 2010 02:33:59 -0000 Received: (qmail 2502 invoked by uid 22791); 2 Dec 2010 02:33:58 -0000 X-SWARE-Spam-Status: No, hits=-5.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_BT,TW_DB,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 02 Dec 2010 02:33:53 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oB22XpLM005728 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 1 Dec 2010 21:33:51 -0500 Received: from valrhona.uglyboxes.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id oB22XmRQ009603 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Wed, 1 Dec 2010 21:33:50 -0500 Message-ID: <4CF7045A.6000000@redhat.com> Date: Thu, 02 Dec 2010 02:33:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100921 Fedora/3.1.4-1.fc13 Lightning/1.0b3pre Thunderbird/3.1.4 MIME-Version: 1.0 To: Hui Zhu CC: insight@sourceware.org Subject: Re: Get build error References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------060607070107090903080901" X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2010-q4/txt/msg00016.txt.bz2 This is a multi-part message in MIME format. --------------060607070107090903080901 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 301 On 12/01/2010 06:15 PM, Hui Zhu wrote: > Ping. Thank you for reminding me... I've committed the following patch to fix this. Keith ChangeLog 2010-12-01 Keith Seitz * generic/gdbtk-hooks.c (gdbtk_annotate_signal): Update to reflect recnet thread_info changes. --------------060607070107090903080901 Content-Type: text/plain; name="stop_signal-update.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="stop_signal-update.patch" Content-length: 1130 Index: generic/gdbtk-hooks.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-hooks.c,v retrieving revision 1.50 diff -u -p -r1.50 gdbtk-hooks.c --- generic/gdbtk-hooks.c 2 Dec 2009 19:29:42 -0000 1.50 +++ generic/gdbtk-hooks.c 2 Dec 2010 02:33:04 -0000 @@ -1,7 +1,7 @@ /* Startup code for Insight. - Copyright (C) 1994, 1995, 1996, 1997, 1998, 2000, 200, 2002, 2003, 2004, 2008 - Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996, 1997, 1998, 2000, 200, 2002, 2003, 2004, + 2008, 2010 Free Software Foundation, Inc. Written by Stu Grossman of Cygnus Support. @@ -808,8 +808,8 @@ gdbtk_annotate_signal (void) Tcl_Eval (gdbtk_interp, "gdbtk_stop_idle_callback"); buf = xstrprintf ("gdbtk_signal %s {%s}", - target_signal_to_name (tp->stop_signal), - target_signal_to_string (tp->stop_signal)); + target_signal_to_name (tp->suspend.stop_signal), + target_signal_to_string (tp->suspend.stop_signal)); if (Tcl_Eval (gdbtk_interp, buf) != TCL_OK) report_error (); free(buf); --------------060607070107090903080901--