diff options
| author | John Mastro | 2017-11-07 21:38:58 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-11-07 21:38:58 +0200 |
| commit | c5ce133f2a16b0366ff5ec2c831bc412dc42cbfc (patch) | |
| tree | aaa41abdc3a85ab06d77aa8c499b24344c262d8a /src | |
| parent | 325ef57b0e3977f9509f1049c826999e8b7c226d (diff) | |
| download | emacs-c5ce133f2a16b0366ff5ec2c831bc412dc42cbfc.tar.gz emacs-c5ce133f2a16b0366ff5ec2c831bc412dc42cbfc.zip | |
Increase DUMPED_HEAP_SIZE in w32heap.c
* src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64 || WIDE_EMACS_INT]: Bump
up DUMPED_HEAP_SIZE to 22 MiB. (Bug#29180)
Diffstat (limited to 'src')
| -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 |