From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23216 invoked by alias); 26 Aug 2002 05:02:22 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23209 invoked from network); 26 Aug 2002 05:02:20 -0000 Received: from unknown (HELO is.elta.co.il) (199.203.121.2) by sources.redhat.com with SMTP; 26 Aug 2002 05:02:20 -0000 Received: from is (is [199.203.121.2]) by is.elta.co.il (8.9.3/8.8.8) with SMTP id HAA23981; Mon, 26 Aug 2002 07:59:39 +0300 (IDT) Date: Sun, 25 Aug 2002 22:28:00 -0000 From: Eli Zaretskii X-Sender: eliz@is To: Stephane Carrez cc: gdb-patches@sources.redhat.com Subject: Re: [PATCH]: Improve TUI breakpoint display In-Reply-To: <3D69681C.8070307@nerim.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2002-08/txt/msg00846.txt.bz2 On Mon, 26 Aug 2002, Stephane Carrez wrote: > The following patch improves this to: > > - have a single place to detect if a source line has a breakpoint > - display more info about breakpoints. > The following type marker is displayed (only one of them): > > b Breakpoint at line, never hit > B Breakpoint at line, hit > 0 > h Hardware breakpoint, never hit > H Hardware breakpoint, hit > 0 > > In addition, a '+' is displayed for breakpoints that are enabled > and a '-' is displayed for those disabled. > > We can now see: 'B+' or 'b-' instead of '*' in the execution window. Please add a patch to gdb.texinfo, which currently says a breakpoint is marked with a lone `*'. Otherwise, TUI users will not be able to figure out what those indications mean. Thanks.