[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Debugging emacs memory management
From: |
Stefan Monnier |
Subject: |
Re: Debugging emacs memory management |
Date: |
Tue, 17 Feb 2015 19:07:04 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) |
> Just so I'm clear, is it normal for almost all the consumed memory to be
> "heap" memory, as I'm observing?
The "heap" memory is the memory managed by malloc. It's frequently
significantly larger than the size of the Lisp heap (it usually
includes the Lisp heap, so it's normal to be larger), because of all the
memory allocated for fonts, images, GUI widgets, you name it, ...
Stefan