From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20415 invoked by alias); 16 May 2011 21:04:32 -0000 Received: (qmail 20387 invoked by uid 22791); 16 May 2011 21:04:30 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-fx0-f41.google.com (HELO mail-fx0-f41.google.com) (209.85.161.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 16 May 2011 21:04:16 +0000 Received: by fxm18 with SMTP id 18so4180059fxm.0 for ; Mon, 16 May 2011 14:04:15 -0700 (PDT) Received: by 10.223.14.139 with SMTP id g11mr2788905faa.103.1305579855124; Mon, 16 May 2011 14:04:15 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.113.148 with HTTP; Mon, 16 May 2011 14:03:55 -0700 (PDT) In-Reply-To: References: From: Justin Lebar Date: Mon, 16 May 2011 21:04:00 -0000 Message-ID: Subject: Re: [Patch] Bug 8287: Skip uninteresting functions while debugging To: Tom Tromey Cc: gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes 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 X-SW-Source: 2011-05/txt/msg00371.txt.bz2 Anything I can do to push this forward? I'd be a bit sad if the patch sat and rotted again... -Justin On Mon, Apr 25, 2011 at 3:34 PM, Justin Lebar wrot= e: > After many months of inactivity, I finally have time to work on this > again. =A0I'm really sorry for the delay. > > I've attached a patch for tip of trunk. =A0I renamed the command from > "blacklist" to "skip". > > The one major issue outstanding on the previous patch was that every > time you stepped, I tried to resolve all skips pending a shared > library load. =A0I did this because registering a solib load listener > didn't work -- somehow even after I was notified of the load, the > solib's symbols weren't available. > > I hacked around this problem by putting a call to skip_re_set at the > end of breakpoint_re_set. > > -Justin > > On Fri, Jul 23, 2010 at 3:50 PM, Justin Lebar wr= ote: >> Justin> I'm not sure I like "enable blacklist". =A0The problem is that >> Justin> "blacklist" is a noun referring to the list of all functions we >> Justin> skip and also a verb meaning "add an entry to the blacklist". >> Justin> "Enable blacklist" sounds to me like we're enabling an entire >> Justin> list of blacklist entries. >> >> Tom> Yeah, that makes sense. >> Tom> Yes, that would be good. =A0Any ideas for names? >> >> Maybe we could use "skip": >> >> skip function foo >> skip file bar >> info skip >> delete skip 1 >> disable skip 42 >> >> "Ignore" might also work, but I don't like "delete ignore 1", or >> "enable ignore 2". >> >> -Justin >> >