From fce07d461dec3128c2a3618adbbb4794a45b1fdb Mon Sep 17 00:00:00 2001 From: Po Lu Date: Thu, 26 Jan 2023 08:40:27 +0800 Subject: [PATCH] Increase DUMPED_HEAP_SIZE * src/w32heap.c (DUMPED_HEAP_SIZE): Add 5 megabytes. --- src/w32heap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32heap.c b/src/w32heap.c index a1975d9a975..628fc28e3c5 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -121,9 +121,9 @@ typedef struct _RTL_HEAP_PARAMETERS { # define DUMPED_HEAP_SIZE 10 #else # if defined _WIN64 || defined WIDE_EMACS_INT -# define DUMPED_HEAP_SIZE (23*1024*1024) +# define DUMPED_HEAP_SIZE (28*1024*1024) # else -# define DUMPED_HEAP_SIZE (13*1024*1024) +# define DUMPED_HEAP_SIZE (18*1024*1024) # endif #endif -- 2.39.5