diff options
| author | Eli Zaretskii | 2016-11-05 10:21:23 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-11-05 10:21:23 +0200 |
| commit | ebaf39e3f2c8e7bfc01746adec9ffbe945efca23 (patch) | |
| tree | 3a1a77ee05ee54668132bf7b308423ae1ca507f4 | |
| parent | 44c34c2ed30007fbcb4d33f3c2b390cc17a5b520 (diff) | |
| download | emacs-ebaf39e3f2c8e7bfc01746adec9ffbe945efca23.tar.gz emacs-ebaf39e3f2c8e7bfc01746adec9ffbe945efca23.zip | |
Enlarge DUMPED_HEAP_SIZE
* src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64 || WIDE_EMACS_INT]:
Enlarge to 21MB. Reported by Richard Copley <rcopley@gmail.com>.
| -rw-r--r-- | src/w32heap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32heap.c b/src/w32heap.c index 443472b4708..43b5f352a1d 100644 --- a/src/w32heap.c +++ b/src/w32heap.c | |||
| @@ -114,7 +114,7 @@ typedef struct _RTL_HEAP_PARAMETERS { | |||
| 114 | to build only the first bootstrap-emacs.exe with the large size, | 114 | to build only the first bootstrap-emacs.exe with the large size, |
| 115 | and reset that to a lower value afterwards. */ | 115 | and reset that to a lower value afterwards. */ |
| 116 | #if defined _WIN64 || defined WIDE_EMACS_INT | 116 | #if defined _WIN64 || defined WIDE_EMACS_INT |
| 117 | # define DUMPED_HEAP_SIZE (20*1024*1024) | 117 | # define DUMPED_HEAP_SIZE (21*1024*1024) |
| 118 | #else | 118 | #else |
| 119 | # define DUMPED_HEAP_SIZE (12*1024*1024) | 119 | # define DUMPED_HEAP_SIZE (12*1024*1024) |
| 120 | #endif | 120 | #endif |