]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compilation error in profiler.c
authorEli Zaretskii <eliz@gnu.org>
Fri, 27 Oct 2023 15:26:27 +0000 (18:26 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 27 Oct 2023 15:26:27 +0000 (18:26 +0300)
* src/profiler.c (memory): Declare outside of the
PROFILER_CPU_SUPPORT conditional.  (Bug#66774)

src/profiler.c

index 6217071ef9cfb5fb22ea50e5abfee92ec7dee32f..199cf368a55c20a5014d786acf4cc6f529081308 100644 (file)
@@ -235,9 +235,6 @@ static enum profiler_cpu_running
 /* Hash-table log of CPU profiler.  */
 static struct profiler_log cpu;
 
-/* Hash-table log of Memory profiler.  */
-static struct profiler_log memory;
-
 /* The current sampling interval in nanoseconds.  */
 static EMACS_INT current_sampling_interval;
 
@@ -456,6 +453,9 @@ Before returning, a new log is allocated for future samples.  */)
 \f
 /* Memory profiler.  */
 
+/* Hash-table log of Memory profiler.  */
+static struct profiler_log memory;
+
 /* True if memory profiler is running.  */
 bool profiler_memory_running;