From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14996 invoked by alias); 23 Aug 2012 12:46:44 -0000 Received: (qmail 14988 invoked by uid 22791); 23 Aug 2012 12:46:43 -0000 X-SWARE-Spam-Status: No, hits=-4.4 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 23 Aug 2012 12:46:26 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1T4Wnp-0003EE-Sg from Yao_Qi@mentor.com ; Thu, 23 Aug 2012 05:46:25 -0700 Received: from SVR-ORW-FEM-03.mgc.mentorg.com ([147.34.97.39]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 23 Aug 2012 05:46:25 -0700 Received: from qiyao.dyndns.org (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.1.289.1; Thu, 23 Aug 2012 05:46:24 -0700 Message-ID: <50362619.6030505@codesourcery.com> Date: Thu, 23 Aug 2012 12:46:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120717 Thunderbird/14.0 MIME-Version: 1.0 To: Hui Zhu CC: , Hui Zhu Subject: Re: [RFC] Autoload-breakpoints new version [3/9] notification async References: <5020BF3A.8030809@mentor.com> <1866631.Ri6KkAT9H2@qiyao.dyndns.org> <50286552.1090003@codesourcery.com> In-Reply-To: Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-08/txt/msg00657.txt.bz2 On 08/15/2012 10:22 PM, Hui Zhu wrote: > struct stop_reply; > @@ -1297,6 +1302,7 @@ enum { > PACKET_QDisableRandomization, > PACKET_QAgent, > PACKET_AutoloadBreakpoints, > + PACKET_NotificationAsync, > PACKET_MAX > }; > > @@ -3998,6 +4004,8 @@ static struct protocol_feature remote_pr > remote_string_tracing_feature, -1 }, > { "AutoloadBreakpoints", PACKET_DISABLE, remote_supported_packet, > PACKET_AutoloadBreakpoints }, > + { "NotificationAsync", PACKET_DISABLE, remote_supported_packet, > + PACKET_NotificationAsync }, > }; Hui, As we discussed in this thread, Re: [RFC] Autoload-breakpoints new version [3/9] notification async http://sourceware.org/ml/gdb-patches/2012-08/msg00337.html "NotificationAsync" is not needed anymore, so your patch should be updated to reflect this. -- Yao