From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 87451 invoked by alias); 11 Sep 2015 20:53:23 -0000 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 Received: (qmail 87442 invoked by uid 89); 11 Sep 2015 20:53:22 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,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; Fri, 11 Sep 2015 20:53:21 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 8A70CC0A161B for ; Fri, 11 Sep 2015 20:53:20 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-22.ams2.redhat.com [10.36.116.22]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t8BKrHJu026074 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 11 Sep 2015 16:53:19 -0400 Date: Fri, 11 Sep 2015 20:53:00 -0000 From: Jan Kratochvil To: Pedro Alves Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 11/18] Implement all-stop on top of a target running non-stop mode Message-ID: <20150911205316.GA26176@host1.jankratochvil.net> References: <1432250354-2721-1-git-send-email-palves@redhat.com> <1432250354-2721-12-git-send-email-palves@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432250354-2721-12-git-send-email-palves@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00261.txt.bz2 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. Jan