From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21985 invoked by alias); 4 Apr 2003 19:38:11 -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 21974 invoked from network); 4 Apr 2003 19:38:10 -0000 Received: from unknown (HELO nick.uklinux.net) (194.247.48.245) by sources.redhat.com with SMTP; 4 Apr 2003 19:38:10 -0000 Received: by nick.uklinux.net (Postfix, from userid 501) id 836AC75FDD; Fri, 4 Apr 2003 20:33:59 +0100 (BST) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16013.56871.250844.888037@nick.uklinux.net> Date: Fri, 04 Apr 2003 19:38:00 -0000 To: bob_rossi@cox.net, ac131313@redhat.com Cc: gdb@sources.redhat.com Subject: Re: Add fullname to breakpoint output X-SW-Source: 2003-04/txt/msg00049.txt.bz2 > > Hi, > > I wrote a patch that adds the fullname to breakpoint output. > > (gdb) -break-insert main > > ^done,bkpt={number="1",type="breakpoint",disp="keep",enabled="y", > > addr="0x080483c3",func="main",fullname="/home/bob/cvs/src/gdb/test.c", > > file="test.c",line="8",times="0"} > > (gdb) > > I would like confirmation on this before I go through the effort to > > fix the testsuite. The CLI output doesn't give the absolute pathname: (gdb) break main Breakpoint 1 at 0x804856c: file mytest.c, line 36. so doesn't this add to the inconsistency? Since, as has been said before, on stopping CLI gives the absolute pathname: (gdb) run Starting program: /home/nick/mytest Breakpoint 1, main (argc=1, argv=0xbffff7d4) at mytest.c:36 ^Z^Z/home/nick/mytest.c:36:466:beg:0x804856c (gdb) while MI gives the relative pathname: -exec-run ^running (gdb) *stopped,reason="breakpoint-hit",bkptno="1",thread-id="0",frame={addr="0x0804856c",func="main",args=[{name="argc",value="1"},{name="argv",value="0xbffff7d4"}],file="mytest.c",line="36"} I don't think any of this would matter much if the search path for source files could be accessed by the front-end. Currently, however, unlike `path', `dir' resets rather than lists the current setting and the front-end can't (easily) access $cdir. Would it be a good idea to make the source path, $cdir, $cwd read-only convenience variables? Nick