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: gnus makes emacs lose response Date: Fri, 07 Apr 2006 10:13:16 +0200 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1144397737 21647 80.91.229.2 (7 Apr 2006 08:15:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 7 Apr 2006 08:15:37 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 07 10:15:33 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 1FRm7t-00056W-KZ for ged-emacs-devel@m.gmane.org; Fri, 07 Apr 2006 10:15:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FRm7t-0007H7-1I for ged-emacs-devel@m.gmane.org; Fri, 07 Apr 2006 04:15:29 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FRm7f-0007Gq-26 for emacs-devel@gnu.org; Fri, 07 Apr 2006 04:15:15 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FRm7c-0007D9-0c for emacs-devel@gnu.org; Fri, 07 Apr 2006 04:15:14 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FRm7b-0007Ct-Rp for emacs-devel@gnu.org; Fri, 07 Apr 2006 04:15:11 -0400 Original-Received: from [195.41.46.235] (helo=pfepa.post.tele.dk) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FRmBW-0002dX-VI for emacs-devel@gnu.org; Fri, 07 Apr 2006 04:19:15 -0400 Original-Received: from kfs-l.imdomain.dk.cua.dk (unknown [80.165.4.124]) by pfepa.post.tele.dk (Postfix) with SMTP id 0E3A6FAC046; Fri, 7 Apr 2006 10:15:09 +0200 (CEST) Original-To: Leon In-Reply-To: (Leon's message of "Thu, 06 Apr 2006 22:15:23 +0100") 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:52489 Archived-At: Leon writes: > It seems when I compiled emacs I didn't turn on debug. I have followed > your instruction and get some debug info attached. > Thanks, but... .. without debugging information, the output from those commands is inadequate to diagnose the problem. > #0 0x0055b402 in __kernel_vsyscall () > #1 0x0063a53d in ___newselect_nocancel () from /lib/libc.so.6 > #2 0x0819b11e in wait_reading_process_output () This is "near the spot" where I made the fix I mentioned. Maybe that fix isn't in your sources. A simple way to check: If you do C-h C-f accept-process-output, do you get this result [check that the arguments are named SECONDS and MILLISEC] ?? accept-process-output is a built-in function in `C source code'. (accept-process-output &optional process seconds millisec just-this-one) Allow any pending output from subprocesses to be read by Emacs. It is read into the process' buffers or given to their filter functions. Non-nil arg process means do not return until some output has been received from process. Non-nil second arg seconds and third arg millisec are number of seconds and milliseconds to wait; return after that much time whether or not there is input. If seconds is a floating point number, it specifies a fractional number of seconds to wait. If optional fourth arg just-this-one is non-nil, only accept output from process, suspending reading output from other processes. If just-this-one is an integer, don't run any timers either. Return non-nil iff we received any output before the timeout expired. -- Kim F. Storm http://www.cua.dk