From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Nick Roberts Newsgroups: gmane.emacs.devel Subject: Re: When is hourglass shown? Date: Sun, 6 Mar 2005 09:11:47 +1300 Message-ID: <16938.4739.215916.118820@farnswood.snap.net.nz> References: <42289C1F.7060709@swipnet.se> <01c52170$Blat.v2.4$97d80e60@zahav.net.il> <01c521a8$Blat.v2.4$4d2acc80@zahav.net.il> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1110054633 22806 80.91.229.2 (5 Mar 2005 20:30:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 5 Mar 2005 20:30:33 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Mar 05 21:30:32 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D7fuo-0000k1-7I for ged-emacs-devel@m.gmane.org; Sat, 05 Mar 2005 21:30:22 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D7gEE-0004Go-S3 for ged-emacs-devel@m.gmane.org; Sat, 05 Mar 2005 15:50:26 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D7gD3-0003oc-8V for emacs-devel@gnu.org; Sat, 05 Mar 2005 15:49:13 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D7gCw-0003l3-3L for emacs-devel@gnu.org; Sat, 05 Mar 2005 15:49:07 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D7gCu-0003gH-Va for emacs-devel@gnu.org; Sat, 05 Mar 2005 15:49:05 -0500 Original-Received: from [202.37.101.8] (helo=viper.snap.net.nz) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D7feH-0007IA-3n; Sat, 05 Mar 2005 15:13:17 -0500 Original-Received: from farnswood.snap.net.nz (p164-tnt1.snap.net.nz [202.124.110.164]) by viper.snap.net.nz (Postfix) with ESMTP id 1AE2148EBB3; Sun, 6 Mar 2005 09:13:12 +1300 (NZDT) Original-Received: by farnswood.snap.net.nz (Postfix, from userid 501) id C760162FBE; Sat, 5 Mar 2005 20:11:47 +0000 (GMT) Original-To: "Jan D." In-Reply-To: X-Mailer: VM 7.19 under Emacs 22.0.50.4 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:34229 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34229 > I know exactly where now :-). Not sure what to do about though. Also, > starting and cancelling hourglass is done frequently, so running with > those breakpoints enabled makes for a lot of continue in gdb. Not > impossible though. I'm not sure if this helps, but gdb has 'ignore count', eg. (gdb) b start_hourglass Breakpoint 3 at 0x... (gdb) ignore 3 9 (gdb) b cancel_hourglass Breakpoint 4 at 0x... (gdb) ignore 4 9 and gdb will only stop every tenth time. Nick