Function: profiler-memory-stop

profiler-memory-stop is a function defined in profiler.c.

Signature

(profiler-memory-stop)

Documentation

Stop the memory profiler. The profiler log is not affected.

Return non-nil if the profiler was running.

Source Code

// Defined in /usr/src/emacs/src/profiler.c
{
  if (!profiler_memory_running)
    return Qnil;
  profiler_memory_running = false;
  return Qt;
}