1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 02:31:03 -08:00

Increase DUMPED_HEAP_SIZE

* src/w32heap.c (DUMPED_HEAP_SIZE): Add 5 megabytes.
This commit is contained in:
Po Lu 2023-01-26 08:40:27 +08:00
parent 3365e413bd
commit fce07d461d

View file

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