From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: might a bug in ido-mode Date: Mon, 26 Apr 2010 20:24:50 +0300 Message-ID: <83fx2iyvml.fsf@gnu.org> References: <87sk6jpu49.fsf@gmail.com> <83mxwrzeha.fsf@gnu.org> <87iq7eh2sj.fsf@gmail.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1272302740 18221 80.91.229.12 (26 Apr 2010 17:25:40 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 26 Apr 2010 17:25:40 +0000 (UTC) Cc: emacs-devel@gnu.org To: zwz Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 26 19:25:39 2010 connect(): No such file or directory Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O6S3u-0002et-QB for ged-emacs-devel@m.gmane.org; Mon, 26 Apr 2010 19:25:39 +0200 Original-Received: from localhost ([127.0.0.1]:41841 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6S3t-0000et-9k for ged-emacs-devel@m.gmane.org; Mon, 26 Apr 2010 13:25:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O6S3n-0000eY-P0 for emacs-devel@gnu.org; Mon, 26 Apr 2010 13:25:31 -0400 Original-Received: from [140.186.70.92] (port=54358 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6S3m-0000e0-HG for emacs-devel@gnu.org; Mon, 26 Apr 2010 13:25:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O6S3l-000055-94 for emacs-devel@gnu.org; Mon, 26 Apr 2010 13:25:30 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:33579) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O6S3l-0008WJ-0n for emacs-devel@gnu.org; Mon, 26 Apr 2010 13:25:29 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0L1H00L00V0KMV00@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Mon, 26 Apr 2010 20:24:44 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([77.127.125.239]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0L1H00KT4V18QH20@a-mtaout20.012.net.il>; Mon, 26 Apr 2010 20:24:44 +0300 (IDT) In-reply-to: <87iq7eh2sj.fsf@gmail.com> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) 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:124226 Archived-At: > From: zwz > Date: Mon, 26 Apr 2010 19:27:24 +0800 > > and then I tried the step 3 and 4 many times with various file names > (e.g. main.c, test.c, etc.). Here the most important thing is that you > should try to hit C-j when the ido-mode is searching. The timing is the > key to catch the bug. I didn't succeed in doing that, ido is too fast on my machine. > the gdb console says: > gdb: unknown target exception 0xc0000029 at 0x77d10754 > program received signal ?, unknown signal. What version of GDB is that? what does "gdb --version" display? > [switch to thread 5860.0xa80] > 0x77d10754 in ntdll!EtwpNotificationThread() > from C:\Windows\system32\ntdll.dll > (gdb) warning: Invalid parameter passed to C runtime function. (9 times) > > And after I input "c" to continue the program, emacs crashes, with > the gdb console saying: > program exited with code 030000000051 Instead of typing "c", type "bt" and show the results. Please do that in all of the 4 threads you have, like this: (gdb) thread 1 (gdb) bt (gdb) thread 2 (gdb) bt etc. Thanks.