From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 123077 invoked by alias); 24 Feb 2016 18:21:37 -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 123061 invoked by uid 89); 24 Feb 2016 18:21:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:864, H*f:sk:089e013, news X-HELO: mail-vk0-f45.google.com Received: from mail-vk0-f45.google.com (HELO mail-vk0-f45.google.com) (209.85.213.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 24 Feb 2016 18:21:35 +0000 Received: by mail-vk0-f45.google.com with SMTP id c3so24911185vkb.3 for ; Wed, 24 Feb 2016 10:21:35 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=Q9sUJ4qrRzSDfA2tQMxwxtYCb36TPOsH/VVDSEhTzgo=; b=R1GTbMsZEi9KrWP/2E+FEWeRfbpj2NpU09X+vPHcK+kd+xgN1I/0VYAV21M/ATdlbl 6IsSqxn4NychX6+JytqO+YPGgesUmRbPslF1AAtU6sP9xjmvRzorLF+1z+yMOBDZ1g01 QF2JbST69AgaDRS0LLiSdKSrRON1HF3zuapsENVSNizF81JxhuIIfVNHFTysRP4KcMIY 5NwCHnYW/NOFwQYDNZ4WZrYo5IceEhLKLegdGqU546eFwceMuX7s5tr5g/W5nUJh1kvW NK24xfUK9adyXNGeEV/LQ5lL4QtKAgrmgaqRJBrEajyUamgpP4ukIOEOxXhDXMhO6Iu9 B1Dg== X-Gm-Message-State: AG10YOT4QvVYVsznQTq3GfgeeDDz7IC8tb92PacjZOD2wWtQf+6deOQU13n6gV10YChFDeuabdfWGqlVczOeqPkn X-Received: by 10.31.107.194 with SMTP id k63mr30205766vki.27.1456338093046; Wed, 24 Feb 2016 10:21:33 -0800 (PST) MIME-Version: 1.0 Received: by 10.31.148.216 with HTTP; Wed, 24 Feb 2016 10:20:53 -0800 (PST) In-Reply-To: <20160224095454.GA5599@adacore.com> References: <089e013a213e80c5bf052c76bd79@google.com> <20160224095454.GA5599@adacore.com> From: Doug Evans Date: Wed, 24 Feb 2016 18:21:00 -0000 Message-ID: Subject: Re: [PATCH, doc RFA] Add "skip regexp" To: Joel Brobecker Cc: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00743.txt.bz2 On Wed, Feb 24, 2016 at 1:54 AM, Joel Brobecker wrote: > Hi Doug, > >> > > --- a/gdb/NEWS >> > > +++ b/gdb/NEWS >> > > @@ -127,6 +127,14 @@ show max-value-size >> > > allocate for value contents. Prevents incorrect programs from >> > > causing GDB to allocate overly large buffers. Default is 64k. >> > > >> > > +skip -file file >> > > +skip -gfile file-glob-pattern >> > > +skip -function function >> > > +skip -rfunction regular-expression >> > > + A generalized form of the skip command, with new support for >> > > + glob-style file names and regular expressions for function names. >> > > + Additionally, a file spec and a function spec may now be combined. > > This entry was added in the GDB 7.11 section, but I think you meant > to add it in the "since 7.11" section? Whoops, fixed. Thanks!