From patchwork Sun Jul 1 21:07:34 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philippe Waroquiers X-Patchwork-Id: 28180 Received: (qmail 104507 invoked by alias); 1 Jul 2018 21:07:53 -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 104364 invoked by uid 89); 1 Jul 2018 21:07:52 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=informations, attribute, Changed, sk:check-l X-HELO: mailsec107.isp.belgacom.be Received: from mailsec107.isp.belgacom.be (HELO mailsec107.isp.belgacom.be) (195.238.20.103) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 01 Jul 2018 21:07:51 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1530479271; x=1562015271; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=S3OFpC5KG/P2uQcyRclfA2GQJ16BaXaPpDRj5d2rsJ0=; b=l+nH68Y4guKw65LeO/F+lN/rQJRiI6IAscypUuU++g7LTjoCVhxRC8P/ 6yelxLv0XSO96To1wDtBsHl5Vbp88Q==; Received: from 224.41-64-87.adsl-dyn.isp.belgacom.be (HELO md.home) ([87.64.41.224]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 01 Jul 2018 23:07:40 +0200 From: Philippe Waroquiers To: gdb-patches@sourceware.org Cc: Philippe Waroquiers Subject: [RFC 5/5] Announce changes in NEWS to info [args|functions|locals|variables] Date: Sun, 1 Jul 2018 23:07:34 +0200 Message-Id: <20180701210734.3793-6-philippe.waroquiers@skynet.be> In-Reply-To: <20180701210734.3793-1-philippe.waroquiers@skynet.be> References: <20180701210734.3793-1-philippe.waroquiers@skynet.be> X-IsSubscribed: yes Announce changes in NEWS to info [args|functions|locals|variables] --- gdb/NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gdb/NEWS b/gdb/NEWS index 839466e7e0..74471b6a02 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -56,6 +56,17 @@ maint show check-libthread-db debugging libraries as they are loaded. The default is not to perform such checks. +* Changed commands + +info args [-q] [-t TYPEREGEXP] [NAMEREGEXP] +info functions [-q] [-t TYPEREGEXP] [NAMEREGEXP] +info locals [-q] [-t TYPEREGEXP] [NAMEREGEXP] +info variables [-q] [-t TYPEREGEXP] [NAMEREGEXP] + These commands can now print only the searched entities + matching the provided regexp(s), giving a condition + on the entity names or entity types. The flag -q + disables printing headers or informations messages. + * Python API ** Type alignment is now exposed via the "align" attribute of a gdb.Type.