diff options
| author | Noam Postavsky | 2017-11-21 14:12:55 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2017-11-27 16:53:55 -0500 |
| commit | 340f74daa8ac5fab0efc35d12ef5cf5cb3507b22 (patch) | |
| tree | d6c226c64e066c588058709532db9cd4ee6ea43a /src/w32heap.c | |
| parent | f2e6961a1b849e6a026db30a4f7d09b6f0753b02 (diff) | |
| download | emacs-340f74daa8ac5fab0efc35d12ef5cf5cb3507b22.tar.gz emacs-340f74daa8ac5fab0efc35d12ef5cf5cb3507b22.zip | |
* src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64]: Bump to 22 MiB.
Diffstat (limited to 'src/w32heap.c')
| -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 85ed050d997..4115049d71f 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 (21*1024*1024) | 119 | # define DUMPED_HEAP_SIZE (22*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 |