From: John Mastro Date: Tue, 7 Nov 2017 19:38:58 +0000 (+0200) Subject: Increase DUMPED_HEAP_SIZE in w32heap.c X-Git-Tag: emacs-27.0.90~6177 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c5ce133f2a16b0366ff5ec2c831bc412dc42cbfc;p=emacs.git Increase DUMPED_HEAP_SIZE in w32heap.c * src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64 || WIDE_EMACS_INT]: Bump up DUMPED_HEAP_SIZE to 22 MiB. (Bug#29180) --- diff --git a/src/w32heap.c b/src/w32heap.c index 85ed050d997..4115049d71f 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -116,7 +116,7 @@ typedef struct _RTL_HEAP_PARAMETERS { to build only the first bootstrap-emacs.exe with the large size, and reset that to a lower value afterwards. */ #if defined _WIN64 || defined WIDE_EMACS_INT -# define DUMPED_HEAP_SIZE (21*1024*1024) +# define DUMPED_HEAP_SIZE (22*1024*1024) #else # define DUMPED_HEAP_SIZE (13*1024*1024) #endif