From patchwork Sun May 29 16:47:45 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kratochvil X-Patchwork-Id: 12609 Received: (qmail 73978 invoked by alias); 29 May 2016 16:47:54 -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 73969 invoked by uid 89); 29 May 2016 16:47:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=H*Ad:U*jistone, catching, news 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; Sun, 29 May 2016 16:47:52 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 55DD881F07; Sun, 29 May 2016 16:47:51 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-44.ams2.redhat.com [10.36.116.44]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u4TGlkPF006807 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 29 May 2016 12:47:48 -0400 Date: Sun, 29 May 2016 18:47:45 +0200 From: Jan Kratochvil To: Eli Zaretskii Cc: gdb-patches@sourceware.org, philippe.waroquiers@skynet.be, sergiodj@redhat.com, palves@redhat.com, eliz@gnu.org, xdje42@gmail.com, scox@redhat.com, Josh Stone Subject: [doc] NEWS: QCatchSyscalls: simplify Message-ID: <20160529164745.GA21714@host1.jankratochvil.net> References: <1449196006-13759-2-git-send-email-jistone@redhat.com> <1452308954-13679-1-git-send-email-jistone@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1452308954-13679-1-git-send-email-jistone@redhat.com> User-Agent: Mutt/1.6.1 (2016-04-27) X-IsSubscribed: yes On Sat, 09 Jan 2016 04:09:14 +0100, Josh Stone wrote: > --- a/gdb/NEWS > +++ b/gdb/NEWS > @@ -120,6 +120,21 @@ N stop reply > threads are stopped). The remote stub reports support for this stop > reply to GDB's qSupported query. > > +QCatchSyscalls:1 [;SYSNO]... > +QCatchSyscalls:0 > + Enable ("QCatchSyscalls:1") or disable ("QCatchSyscalls:0") > + catching syscalls from the inferior process. > + > +syscall_entry stop reason > + Indicates that a syscall was just called. > + > +syscall_return stop reason > + Indicates that a syscall just returned. > + > +QCatchSyscalls:1 in qSupported > + The qSupported packet may now include QCatchSyscalls:1 in the reply > + to indicate support for catching syscalls. > + > * Extended-remote exec events > > ** GDB now has support for exec events on extended-remote Linux targets. I find this format non-standard/confusing. OK to check-in this update? Thanks, Jan gdb/ChangeLog 2016-05-29 Jan Kratochvil * NEWS (QCatchSyscalls): Remove the parameter. Include ... (QCatchSyscalls:1 in qSupported) ... this separate entry which got deleted. diff --git a/gdb/NEWS b/gdb/NEWS index f874f03..dce79a2 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -250,10 +250,9 @@ N stop reply threads are stopped). The remote stub reports support for this stop reply to GDB's qSupported query. -QCatchSyscalls:1 [;SYSNO]... -QCatchSyscalls:0 - Enable ("QCatchSyscalls:1") or disable ("QCatchSyscalls:0") - catching syscalls from the inferior process. +QCatchSyscalls + Enables/disables catching syscalls from the inferior process. + The remote stub reports support for this packet to GDB's qSupported query. syscall_entry stop reason Indicates that a syscall was just called. @@ -261,10 +260,6 @@ syscall_entry stop reason syscall_return stop reason Indicates that a syscall just returned. -QCatchSyscalls:1 in qSupported - The qSupported packet may now include QCatchSyscalls:1 in the reply - to indicate support for catching syscalls. - * Extended-remote exec events ** GDB now has support for exec events on extended-remote Linux targets.