From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13449 invoked by alias); 23 Sep 2011 06:02:05 -0000 Received: (qmail 13441 invoked by uid 22791); 23 Sep 2011 06:02:01 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_NONE,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from elasmtp-dupuy.atl.sa.earthlink.net (HELO elasmtp-dupuy.atl.sa.earthlink.net) (209.86.89.62) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 23 Sep 2011 06:01:47 +0000 Received: from [70.170.59.51] (helo=macbook2.local) by elasmtp-dupuy.atl.sa.earthlink.net with esmtpa (Exim 4.67) (envelope-from ) id 1R6ypX-0001TG-4J for gdb-patches@sourceware.org; Fri, 23 Sep 2011 02:01:47 -0400 Message-ID: <4E7C20C8.3060009@earthlink.net> Date: Fri, 23 Sep 2011 07:34:00 -0000 From: Stan Shebs User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:6.0.2) Gecko/20110902 Thunderbird/6.0.2 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: [PATCH] Collect return addresses at tracepoints References: <4E7A5B0C.2020802@earthlink.net> <83aa9wsaz9.fsf@gnu.org> In-Reply-To: <83aa9wsaz9.fsf@gnu.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ELNK-Trace: ae6f8838ff913eba0cc1426638a40ef67e972de0d01da9401882cfaa5ec3c9b4d5f4101c914e3985350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c 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: 2011-09/txt/msg00421.txt.bz2 On 9/22/11 11:11 AM, Eli Zaretskii wrote: >> Date: Wed, 21 Sep 2011 14:45:48 -0700 >> From: Stan Shebs >> >> I'll commit this in a few days if there are no objections. > Am I blind, or this part > >> * gdb.texinfo (Tracepoint Action Lists): Document $_ret. > is missing from the patch you posted? > Oops! Here it is: Index: gdb.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v retrieving revision 1.862 diff -p -r1.862 gdb.texinfo *** gdb.texinfo 16 Sep 2011 09:07:01 -0000 1.862 --- gdb.texinfo 23 Sep 2011 05:57:33 -0000 *************** Collect all function arguments. *** 10284,10289 **** --- 10284,10293 ---- @item $locals Collect all local variables. + @item $_ret + Collect the return address. This is helpful if you want to see more + of a backtrace. + @item $_sdata @vindex $_sdata@r{, collect} Collect static tracepoint marker specific data. Only available for Stan