Function: malloc-info
malloc-info is an interactive function defined in alloc.c.
Signature
(malloc-info)
Documentation
Report malloc information to stderr.
This function outputs to stderr an XML-formatted description of the current state of the memory-allocation arenas.
Key Bindings
Source Code
// Defined in /usr/src/emacs/src/alloc.c
{
if (malloc_info (0, stderr))
error ("malloc_info failed: %s", emacs_strerror (errno));
return Qnil;
}