1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 00:31:01 -08:00

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)
This commit is contained in:
John Mastro 2017-11-07 21:38:58 +02:00 committed by Eli Zaretskii
parent 325ef57b0e
commit c5ce133f2a

View file

@ -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