From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1134 invoked by alias); 13 Jun 2003 01:00:03 -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 1088 invoked from network); 13 Jun 2003 01:00:02 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 13 Jun 2003 01:00:02 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 46D36D2DAF; Thu, 12 Jun 2003 17:59:45 -0700 (PDT) Date: Fri, 13 Jun 2003 01:00:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA/doco] Add documentation for the ``minimal'' language Message-ID: <20030613005945.GE947@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="4zI0WCX1RcnW9Hbu" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2003-06/txt/msg00445.txt.bz2 --4zI0WCX1RcnW9Hbu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 338 Hello, here is a first shot at providing some documentation regarding the new pseudo-language we added not-so-recently. There isn't much to say... Does it look ok? 2003-06-12 J. Brobecker * gdb.texinfo (Unsupported languages): New section. (Languages): Add link to new section. Thanks, -- Joel --4zI0WCX1RcnW9Hbu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="gdb-doc-minimal.diff" Content-length: 1572 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.164 diff -c -3 -r1.164 gdb.texinfo *** gdb.texinfo 9 Jun 2003 21:12:19 -0000 1.164 --- gdb.texinfo 13 Jun 2003 00:59:33 -0000 *************** *** 7436,7441 **** --- 7436,7442 ---- * Show:: Displaying the language * Checks:: Type and range checks * Support:: Supported languages + * Unsupported languages:: Unsupported languages @end menu @node Setting *************** *** 8841,8846 **** --- 8842,8863 ---- @cindex @code{#} in Modula-2 In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is interpreted as the beginning of a comment. Use @code{<>} instead. + + @node Unsupported languages + @section Unsupported languages + + @cindex Unsupported languages + @cindex Minimal language + In addition to the other fully-supported languages, @value{GDBN} + also provides a pseudo-language, called @code{minimal}. It does + not represent a real-language, but provides a set of capabilities + close to what the C or assembly languages provide. This should allow + most simple operations to be performed while debugging an application + that uses a languages currently not supported by @value{GDBN}. + + If the language is set to @code{auto}, @value{GDBN} will automatically + select this language if the current frame correspond to an unsupported + language. @node Symbols @chapter Examining the Symbol Table --4zI0WCX1RcnW9Hbu--