From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Re: W32 to AIX performance Date: Mon, 03 Jul 2006 23:44:24 +0200 Message-ID: References: <20060629031018.65975.qmail@web60324.mail.yahoo.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1151963202 23017 80.91.229.2 (3 Jul 2006 21:46:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 3 Jul 2006 21:46:42 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 03 23:46:40 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FxWFa-0001a9-Sn for ged-emacs-devel@m.gmane.org; Mon, 03 Jul 2006 23:46:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FxWFa-0001nP-GI for ged-emacs-devel@m.gmane.org; Mon, 03 Jul 2006 17:46:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FxWFO-0001mn-OR for emacs-devel@gnu.org; Mon, 03 Jul 2006 17:46:26 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FxWFL-0001mP-86 for emacs-devel@gnu.org; Mon, 03 Jul 2006 17:46:25 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FxWFL-0001mL-4Q for emacs-devel@gnu.org; Mon, 03 Jul 2006 17:46:23 -0400 Original-Received: from [195.41.46.236] (helo=pfepb.post.tele.dk) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FxWSs-0007CF-3m for emacs-devel@gnu.org; Mon, 03 Jul 2006 18:00:22 -0400 Original-Received: from kfs-l.imdomain.dk.cua.dk (0x503e2644.bynxx3.adsl-dhcp.tele.dk [80.62.38.68]) by pfepb.post.tele.dk (Postfix) with SMTP id 5AB39A5002C; Mon, 3 Jul 2006 23:46:15 +0200 (CEST) Original-To: Michael Mauger In-Reply-To: (Michael Mauger's message of "Mon, 3 Jul 2006 18:11:59 +0000 (UTC)") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) 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 Xref: news.gmane.org gmane.emacs.devel:56443 Archived-At: Michael Mauger writes: > Well, I'm not seeing much of note. I've got a debug version of Emacs running > under GDB. I set a breakpoint on Fsignal and am using C-g to get control in > GDB (if I should be doing this in another way, please let me know...) That is not the way to get control back to GDB. You should "stop" the execution, typically by hitting C-z in gdb. or you could run gdb inside Emacs: - open a file in src, e.g. src/process.c - M-x gdb - it will typically suggest to debug emacs - r - use the icon in the tool-bar to stop the inferior emacs. - use to continue.