From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12513 invoked by alias); 6 Feb 2005 20:11:47 -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 12351 invoked from network); 6 Feb 2005 20:11:31 -0000 Received: from unknown (HELO viper.snap.net.nz) (202.37.101.8) by sourceware.org with SMTP; 6 Feb 2005 20:11:31 -0000 Received: from farnswood.snap.net.nz (p91-tnt1.snap.net.nz [202.124.110.91]) by viper.snap.net.nz (Postfix) with ESMTP id EFD5E32C847 for ; Mon, 7 Feb 2005 09:11:29 +1300 (NZDT) Received: by farnswood.snap.net.nz (Postfix, from userid 501) id 06C38628AB; Sun, 6 Feb 2005 20:04:19 +0000 (GMT) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16902.30786.705993.121669@farnswood.snap.net.nz> Date: Sun, 06 Feb 2005 23:18:00 -0000 To: gdb@sources.redhat.com Subject: fullname descriptor with -break-list X-SW-Source: 2005-02/txt/msg00021.txt.bz2 I am trying to migrate the GDB user interface in Emacs from annotations to MI. To help with this process, I would like to add the fullname, as used in -file-list-exec-source-file and -file-list-exec-source-files, to the MI command -break-list. i.e the example in the manual would look like: -break-list ^done,BreakpointTable={nr_rows="1",nr_cols="6", hdr=[{width="3",alignment="-1",col_name="number",colhdr="Num"}, {width="14",alignment="-1",col_name="type",colhdr="Type"}, {width="4",alignment="-1",col_name="disp",colhdr="Disp"}, {width="3",alignment="-1",col_name="enabled",colhdr="Enb"}, {width="10",alignment="-1",col_name="addr",colhdr="Address"}, {width="40",alignment="2",col_name="what",colhdr="What"}], body=[bkpt={number="1",type="breakpoint",disp="keep",enabled="y", addr="0x000100d0",func="main",file="hello.c", fullname="/home/nick/hello.c",line="5",cond="1",times="0",ignore="3"}]} ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Would such a patch be acceptable? Nick