aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo Lu2023-01-26 08:40:27 +0800
committerPo Lu2023-01-26 08:40:27 +0800
commitfce07d461dec3128c2a3618adbbb4794a45b1fdb (patch)
treef6bf3f4a1e7fa0fade58ac76deddf138959f7c0a
parent3365e413bd9cb482849cf48e4f6c366a61326569 (diff)
downloademacs-fce07d461dec3128c2a3618adbbb4794a45b1fdb.tar.gz
emacs-fce07d461dec3128c2a3618adbbb4794a45b1fdb.zip
Increase DUMPED_HEAP_SIZE
* src/w32heap.c (DUMPED_HEAP_SIZE): Add 5 megabytes.
-rw-r--r--src/w32heap.c4
1 files 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 {
121# define DUMPED_HEAP_SIZE 10 121# define DUMPED_HEAP_SIZE 10
122#else 122#else
123# if defined _WIN64 || defined WIDE_EMACS_INT 123# if defined _WIN64 || defined WIDE_EMACS_INT
124# define DUMPED_HEAP_SIZE (23*1024*1024) 124# define DUMPED_HEAP_SIZE (28*1024*1024)
125# else 125# else
126# define DUMPED_HEAP_SIZE (13*1024*1024) 126# define DUMPED_HEAP_SIZE (18*1024*1024)
127# endif 127# endif
128#endif 128#endif
129 129