From: Po Lu Date: Thu, 26 Jan 2023 00:40:27 +0000 (+0800) Subject: Increase DUMPED_HEAP_SIZE X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fce07d461dec3128c2a3618adbbb4794a45b1fdb;p=emacs.git Increase DUMPED_HEAP_SIZE * src/w32heap.c (DUMPED_HEAP_SIZE): Add 5 megabytes. --- 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