From: "Ami Fischman" <ami@fischman.org>
To: "Chong Yidong" <cyd@stupidchicken.com>
Cc: emacs-devel@gnu.org
Subject: Re: how do you track down emacs memory leaks?
Date: Sat, 20 Dec 2008 08:27:49 -0800 [thread overview]
Message-ID: <9aa0cfde0812200827u44c9d436tbacbb47d9e07901f@mail.gmail.com> (raw)
In-Reply-To: <87k5bjfmvz.fsf@cyd.mit.edu>
This leak ended up being caused by the bug I reported last night
(mode-line-eol-desc-cache being grown indefinitely). Gnus was not the
cause but rather the trigger, since it visits so many files (using
nnml backend) and visiting files was a prime way to tickle the
mode-line-eol-desc-cache bug.
Since this thread was about debugging methods, I figured I'd add to it
the way that I finally found the culprit:
(defun ami-big-var-p (sym)
(when (and (boundp sym)
(> (length (prin1-to-string (symbol-value sym))) (* 1024 1024)))
t))
(mapatoms '(lambda (sym)
(when (ami-big-var-p sym)
(message (symbol-name sym)))))
This led me to the insanely large variable and from there it was just
a matter of tracking down its construction.
Cheers,
-a
On Tue, Nov 4, 2008 at 8:59 AM, Chong Yidong <cyd@stupidchicken.com> wrote:
> "Ami Fischman" <ami@fischman.org> writes:
>
>>> Does this problem only show up when you use gnus?
>>
>> Yes.
>>
>>> Could you try keeping
>>> another Emacs session around for other non-gnus usage, and see if it
>>> leaks memory?
>>
>> I have and it doesn't. At least not nearly at the rate that the
>> gnus-using session does.
>>
>> I updated my version of gnus from ngnus-0.10 to CVS head yesterday and
>> the leak seems to have slowed down significantly - only about 8MB
>> overnight. So I suspect some trigger has been coincidentally
>> suppressed, but it seems that no elisp code should be able to cause
>> emacs to grow in memory usage disproportional to the numbers reported
>> by memory-usage, so there is still probably a lurking leak in emacs.
>>
>> Do you have any tools/techniques you use to track down C-level leaks?
>
> I'm afraid not. Maybe someone else on this list can suggest something.
>
> One possibility is to try and write a simple test case that demonstrates
> the leak. For instance, a short Elisp program that keeps creating and
> killing network processes. If such a program causes memory to increase,
> that would demonstrate that the memory leak is occurring in the Emacs
> network process code.
>
next prev parent reply other threads:[~2008-12-20 16:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-02 4:05 how do you track down emacs memory leaks? Ami Fischman
2008-11-03 15:13 ` Chong Yidong
2008-11-03 15:24 ` Ami Fischman
2008-11-04 16:59 ` Chong Yidong
2008-12-20 16:27 ` Ami Fischman [this message]
2008-12-20 17:38 ` Leo
2008-12-20 20:39 ` Chong Yidong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9aa0cfde0812200827u44c9d436tbacbb47d9e07901f@mail.gmail.com \
--to=ami@fischman.org \
--cc=cyd@stupidchicken.com \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).