From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28320 invoked by alias); 12 Feb 2005 06:26:32 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 28296 invoked from network); 12 Feb 2005 06:26:26 -0000 Received: from unknown (HELO mta04.pge.com) (131.89.129.74) by sourceware.org with SMTP; 12 Feb 2005 06:26:26 -0000 Received: from mta13.comp.pge.com (mta13.comp.pge.com [10.245.211.128]) by mta04.pge.com (Switch-3.1.7/Switch-3.1.7) with ESMTP id j1C6QP7v011776 for ; Fri, 11 Feb 2005 22:26:25 -0800 (PST) Received: from venus.comp.pge.com (venus.comp.pge.com [10.244.96.57]) by mta13.comp.pge.com (Switch-3.1.7/Switch-3.1.7) with ESMTP id j1C6QPxD022758 for ; Fri, 11 Feb 2005 22:26:25 -0800 (PST) Received: (from esp5@localhost) by venus.comp.pge.com (8.8.8p2+Sun/8.8.8) id WAA29787 for gdb@sources.redhat.com; Fri, 11 Feb 2005 22:18:38 -0800 (PST) X-Authentication-Warning: venus.comp.pge.com: esp5 set sender to esp5@pge.com using -f Date: Sat, 12 Feb 2005 06:52:00 -0000 From: Edward Peschko To: gdb@sources.redhat.com Subject: suppressing stepping into standard library functions Message-ID: <20050212061838.GA29624@venus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-SW-Source: 2005-02/txt/msg00087.txt.bz2 hey all, I believe this has to be a FAQ and there must be a good solution for this, but I can't find out because of searching being down.. ;-) Anyways, what I wanted to do is avoid the stepping into standard library functions for c++ code - seeing stuff like: __normal_iterator(const _Iterator& __i) : _M_current(__i) { } when hitting 'n' in the debugging sessions really obfuscates the flow of logic of the program. I'd like to step through my code, and my code only. Is there a way to configure gdb to avoid stepping into certain classes/functions like this? Ed