From patchwork Mon Sep 14 14:24:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 8684 Received: (qmail 9684 invoked by alias); 14 Sep 2015 14:24:50 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 9587 invoked by uid 89); 14 Sep 2015 14:24:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, KAM_LOTSOFHASH, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 14 Sep 2015 14:24:42 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id C5788461C4 for ; Mon, 14 Sep 2015 14:24:41 +0000 (UTC) Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t8EEOeDS020500; Mon, 14 Sep 2015 10:24:41 -0400 Message-ID: <55F6D8A8.1000807@redhat.com> Date: Mon, 14 Sep 2015 15:24:40 +0100 From: Pedro Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Jan Kratochvil CC: gdb-patches@sourceware.org Subject: Re: [PATCH 11/18] Implement all-stop on top of a target running non-stop mode References: <1432250354-2721-1-git-send-email-palves@redhat.com> <1432250354-2721-12-git-send-email-palves@redhat.com> <20150911205316.GA26176@host1.jankratochvil.net> In-Reply-To: <20150911205316.GA26176@host1.jankratochvil.net> On 09/11/2015 09:53 PM, Jan Kratochvil wrote: > On Fri, 22 May 2015 01:19:07 +0200, Pedro Alves wrote: >> --- a/gdb/NEWS >> +++ b/gdb/NEWS >> @@ -75,6 +75,12 @@ maint print symbol-cache-statistics >> maint flush-symbol-cache >> Flush the contents of the symbol cache. >> >> +maint set target-non-stop (on|off|auto) >> +maint show target-non-stop >> + Control whether GDB targets always operate in non-stop mode even if >> + "set non-stop" is "off". The default is "auto", meaning non-stop >> + mode is enabled if supported by the target. >> + >> record btrace bts >> record bts >> Start branch trace recording using Branch Trace Store (BTS) format. > > This part got checked-in twice: > https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blobdiff;f=gdb/NEWS;h=3fe603615afc858428bc085f345fca3ee12314d5;hp=7e58cc3f31aa961f700ca9b511a0b6c558f73a90;hb=fbea99ea8a062e5cd96e2d88336984ed3adc93d4;hpb=372316f12874a30c62e6d71079ca3b86c786fb7e > > I haven't fixed it. Whoops, thanks. I pushed the obvious patch below to fix it. From b027a8fa7dc4854e72ddada0b495b52166be2974 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 14 Sep 2015 14:43:53 +0100 Subject: [PATCH] Remove duplicate gdb/NEWS entry Commit fbea99ea8a06 added this to both the "Changes in GDB 7.10" and "Changes since GDB 7.10" sections by mistake. gdb/ChangeLog: 2015-09-14 Pedro Alves * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate mention of maint set/show target-non-stop. --- gdb/ChangeLog | 5 +++++ gdb/NEWS | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cb3427..dadb7a0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-09-14 Pedro Alves + + * NEWS (Changes in GDB 7.10, New commands>: Remove duplicate + mention of maint set/show target-non-stop. + 2015-09-11 Don Breazeal * NEWS: Announce new remote packets for the exec-events diff --git a/gdb/NEWS b/gdb/NEWS index bb1c8d9..f563b8c 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -172,12 +172,6 @@ maint print symbol-cache-statistics maint flush-symbol-cache Flush the contents of the symbol cache. -maint set target-non-stop (on|off|auto) -maint show target-non-stop - Control whether GDB targets always operate in non-stop mode even if - "set non-stop" is "off". The default is "auto", meaning non-stop - mode is enabled if supported by the target. - record btrace bts record bts Start branch trace recording using Branch Trace Store (BTS) format.