From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8409 invoked by alias); 1 Sep 2002 17:17:16 -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 8402 invoked from network); 1 Sep 2002 17:17:15 -0000 Received: from unknown (HELO kraid.nerim.net) (62.4.16.95) by sources.redhat.com with SMTP; 1 Sep 2002 17:17:15 -0000 Received: from nerim.fr (stcarrez.net1.nerim.net [62.212.108.40]) by kraid.nerim.net (Postfix) with ESMTP id B721642BDC; Sun, 1 Sep 2002 19:08:40 +0200 (CEST) Message-ID: <3D7267AE.3010506@nerim.fr> Date: Sun, 01 Sep 2002 10:17:00 -0000 From: Stephane Carrez User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.8) Gecko/20020204 X-Accept-Language: en-us MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA]: Document TUI status line Content-Type: multipart/mixed; boundary="------------050404090109070502060400" X-SW-Source: 2002-09/txt/msg00007.txt.bz2 This is a multi-part message in MIME format. --------------050404090109070502060400 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 282 Hi! This patch documents the TUI status line fields. I've used @emph for table because the items are not printed as is. Checked on pdf. Is it ok to commit? Stephane 2002-09-01 Stephane Carrez * gdb.texinfo (TUI Overview): Document status line fields. --------------050404090109070502060400 Content-Type: text/plain; name="gdb-status.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb-status.diffs" Content-length: 1343 Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.117 diff -u -p -r1.117 gdb.texinfo --- gdb.texinfo 1 Sep 2002 08:52:36 -0000 1.117 +++ gdb.texinfo 1 Sep 2002 17:07:36 -0000 @@ -13209,6 +13209,35 @@ assembly and registers @end itemize +On top of the command window a status line gives various information +concerning the current process begin debugged. The status line is +updated when the information it shows changes. The following fields +are displayed: + +@table @emph +@item target +Indicates the current gdb target +(@pxref{Targets, ,Specifying a Debugging Target}). + +@item process +Gives information about the current process or thread number. +When no process is being debugged, this field is set to @code{No process}. + +@item function +Gives the current function name for the selected frame. +The name is demangled if demangling is turned on. +When there is no symbol corresponding to the current PC +the string @code{??} is displayed. + +@item line +Indicates the current line number for the selected frame. +When the current line number is not known the string @code{??} is displayed. + +@item pc +Indicates the current PC address. + +@end table + @node TUI Keys @section TUI Key Bindings @cindex TUI key bindings --------------050404090109070502060400--