From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/52639 Path: main.gmane.org!not-for-mail From: Kevin Greiner Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus from CVS, Emacs from CVS --> out of memory? Date: Tue, 13 May 2003 14:51:12 -0500 Sender: ding-owner@lists.math.uh.edu Message-ID: References: <84of2cp7as.fsf@lucy.is.informatik.uni-duisburg.de> <8465of114j.fsf@lucy.is.informatik.uni-duisburg.de> <84n0hqanhh.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1052855545 22461 80.91.224.249 (13 May 2003 19:52:25 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 13 May 2003 19:52:25 +0000 (UTC) Original-X-From: ding-owner+M1183@lists.math.uh.edu Tue May 13 21:52:23 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Ffmq-0005hZ-00 for ; Tue, 13 May 2003 21:50:08 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19Ffo7-0003ej-00; Tue, 13 May 2003 14:51:27 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19Ffo2-0003ee-00 for ding@lists.math.uh.edu; Tue, 13 May 2003 14:51:22 -0500 Original-Received: (qmail 39517 invoked by alias); 13 May 2003 19:51:22 -0000 Original-Received: (qmail 39512 invoked from network); 13 May 2003 19:51:22 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by sclp3.sclp.com with SMTP; 13 May 2003 19:51:22 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 19FftT-00083Z-00 for ; Tue, 13 May 2003 21:56:59 +0200 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: gnus.ding Original-Lines: 75 Original-NNTP-Posting-Host: h-66-134-21-51.hstqtx02.covad.net Original-X-Trace: quimby.gnus.org 1052855819 30950 66.134.21.51 (13 May 2003 19:56:59 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 13 May 2003 19:56:59 GMT User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (windows-nt) Cancel-Lock: sha1:fof0Pn6BHug00Se6WAukyYI3fOk= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:52639 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:52639 kai.grossjohann@gmx.net (Kai Großjohann) writes: > Kevin Greiner writes: > >> What does list-buffers show after you kill the fetch session? As an >> example, I just opened two groups and my .newsrc-dribble file is >> already over 3M. > > ibuffer wasn't enlightening, but now I did this: > > ELISP> (mapcar (lambda (b) (cons b (buffer-size b))) (buffer-list)) > ((# . 124) > (# . 0) > (# . 581) > (# . 6551) > (# . 873) > (# . 2244) > (# . 68) > (# . 621) > (# . 841) > (# . 2212) > (# . 241) > (# . 564) > (# . 1153) > (# . 527) > (# . 0) > (# . 9607) > (# . 8) > (# . 19) > (# . 2482) > (# . 32349) > (# . 28) > (# . 157) > (# . 173) > (# . 0) > (# . 0) > (# . 0) > (# . 29) > (# . 213373) > (# . 1094) > (# . 0) > (# . 16) > (# . 24) > (# . 0) > (# . 1094) > (# . 2350948) > (# . 183) > (# . 271) > (# . 955) > (# . 2601) > (# . 1186) > (# . 0) > (# . 270109) > (# . 586116) > (# . 68) > (# . 189)) > > I did `J s' in a Gnus. It told me it's out of memory and asked me > whether to continue. I said no, and then evaled the above snippet. > > It doesn't look dangerous to me. What is going on here? > > How can I investigate further? First load-library debug. Set debug-on-error or debug-on-signal (not sure which, if either, will work with out-of-memory). Then try 'J s'. Alternatively, have you checked the message log? Do you have any idea how many groups were fetched before the error? If the error always occurs in one group, you might be able to trace the execution in that group prior to out-of-memory. Kevin