From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13534 invoked by alias); 12 Feb 2008 19:30:20 -0000 Received: (qmail 13524 invoked by uid 22791); 12 Feb 2008 19:30:19 -0000 X-Spam-Check-By: sourceware.org Received: from hosts253.toyon.com (HELO smtp1.toyon.com) (65.160.147.253) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 12 Feb 2008 19:30:01 +0000 Received: from [172.16.1.36] (hosts253.toyon.com [65.160.147.253]) (authenticated bits=0) by smtp1.toyon.com (8.13.1/8.12.11) with ESMTP id m1CJYFYt032185 for ; Tue, 12 Feb 2008 11:34:15 -0800 Message-ID: <47B1F3B7.8040901@toyon.com> Date: Tue, 12 Feb 2008 19:30:00 -0000 From: Chris Stankevitz User-Agent: Thunderbird 2.0.0.6 (X11/20071022) MIME-Version: 1.0 To: gdb@sourceware.org Subject: Delete all breakpoints with less typing Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2008-02/txt/msg00071.txt.bz2 Hello, This is how I delete all breakpoints: (gdb) del b Delete all breakpoints? (y or n) y (gdb) 6 characters for the command plus two more to confirm. I'm used to MSVC which does it with one stroke (SHIFT-F9). Is there a way to remove breakpoints in gdb with less typing and no confirmation? Thank you! Chris