From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3943 invoked by alias); 21 Oct 2009 15:33:39 -0000 Received: (qmail 3934 invoked by uid 22791); 21 Oct 2009 15:33:38 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from smtp-outbound-2.vmware.com (HELO smtp-outbound-2.vmware.com) (65.115.85.73) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 21 Oct 2009 15:33:31 +0000 Received: from mailhost3.vmware.com (mailhost3.vmware.com [10.16.27.45]) by smtp-outbound-2.vmware.com (Postfix) with ESMTP id 479DF29016; Wed, 21 Oct 2009 08:33:30 -0700 (PDT) Received: from [10.20.94.141] (msnyder-server.eng.vmware.com [10.20.94.141]) by mailhost3.vmware.com (Postfix) with ESMTP id 3DA5FCD90C; Wed, 21 Oct 2009 08:33:30 -0700 (PDT) Message-ID: <4ADF2846.9020403@vmware.com> Date: Wed, 21 Oct 2009 15:33:00 -0000 From: Michael Snyder User-Agent: Thunderbird 1.5.0.12 (X11/20080411) MIME-Version: 1.0 To: "gdb-patches@sourceware.org" , Pedro Alves , Eli Zaretskii , Hui Zhu Subject: [RFA] doc for "info record" Content-Type: multipart/mixed; boundary="------------000908070406020007020007" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-10/txt/msg00499.txt.bz2 This is a multi-part message in MIME format. --------------000908070406020007020007 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 34 Look ok to you Eli? Pedro? Hui? --------------000908070406020007020007 Content-Type: text/plain; name="infodoc.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="infodoc.txt" Content-length: 1325 2009-10-21 Michael Snyder * gdb.texinfo (Process Record and Replay): Document new form of info record command. Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.634 diff -u -p -r1.634 gdb.texinfo --- gdb.texinfo 19 Oct 2009 09:51:42 -0000 1.634 +++ gdb.texinfo 21 Oct 2009 15:30:37 -0000 @@ -5516,9 +5516,19 @@ oldest record to make room for each new @item show record stop-at-limit Show the current setting of @code{stop-at-limit}. -@kindex info record insn-number -@item info record insn-number -Show the current number of recorded instructions. +@kindex info record +@item info record +Show various statistics about the state of process record and its +in-memory execution log buffer, including: + +@table @code +@item whether in record mode or replay mode. +@item Lowest recorded instruction number (counting from when the current execution log started recording instructions). +@item Highest recorded instruction number. +@item Current instruction about to be replayed (if in replay mode). +@item Number of instructions contained in the execution log. +@item Max number of instructions that may be contained in the execution log. +@end table @kindex record delete @kindex rec del --------------000908070406020007020007--