aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-06-09 21:14:04 +0300
committerEli Zaretskii2018-06-09 21:14:04 +0300
commit3434edc731e4602891a9cf6418ec4e5ff2f60830 (patch)
tree9d61994d8cd1a8a791d46612bb44f516ad3e3a1c
parent36bbdfc017a6c37873cc0cb54bb966e3e3185012 (diff)
downloademacs-3434edc731e4602891a9cf6418ec4e5ff2f60830.tar.gz
emacs-3434edc731e4602891a9cf6418ec4e5ff2f60830.zip
Enlarge DUMPED_HEAP_SIZE for 64-bit Windows builds
* src/w32heap.c (DUMPED_HEAP_SIZE): Bump to 23MB. Reported by Andy Moreton <andrewjmoreton@gmail.com>.
-rw-r--r--src/w32heap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c
index a3f87bfc7e6..df79f8c2cef 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -116,7 +116,7 @@ typedef struct _RTL_HEAP_PARAMETERS {
116 to build only the first bootstrap-emacs.exe with the large size, 116 to build only the first bootstrap-emacs.exe with the large size,
117 and reset that to a lower value afterwards. */ 117 and reset that to a lower value afterwards. */
118#if defined _WIN64 || defined WIDE_EMACS_INT 118#if defined _WIN64 || defined WIDE_EMACS_INT
119# define DUMPED_HEAP_SIZE (22*1024*1024) 119# define DUMPED_HEAP_SIZE (23*1024*1024)
120#else 120#else
121# define DUMPED_HEAP_SIZE (13*1024*1024) 121# define DUMPED_HEAP_SIZE (13*1024*1024)
122#endif 122#endif