diff options
| author | Martin Rudalics | 2015-05-19 08:50:36 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2015-05-19 08:50:36 +0200 |
| commit | 448cacc85c5cc7b017437e71962168ed03d21ab6 (patch) | |
| tree | 7635f887e095936e4b43dea128a457bef2f8c2e3 /src/w32heap.c | |
| parent | 18e4eb6bd66cf2799156b3a6c3ab93cadc75a2ba (diff) | |
| download | emacs-448cacc85c5cc7b017437e71962168ed03d21ab6.tar.gz emacs-448cacc85c5cc7b017437e71962168ed03d21ab6.zip | |
In w32heap.c bump DUMPED_HEAP_SIZE to 19/12 MB
* emacs-git/quick/src/w32heap.c (DUMPED_HEAP_SIZE): Bump to 19/12 MB.
Diffstat (limited to 'src/w32heap.c')
| -rw-r--r-- | src/w32heap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32heap.c b/src/w32heap.c index ee0eb161502..47ffec1c303 100644 --- a/src/w32heap.c +++ b/src/w32heap.c | |||
| @@ -115,9 +115,9 @@ typedef struct _RTL_HEAP_PARAMETERS { | |||
| 115 | to build only the first bootstrap-emacs.exe with the large size, | 115 | to build only the first bootstrap-emacs.exe with the large size, |
| 116 | and reset that to a lower value afterwards. */ | 116 | and reset that to a lower value afterwards. */ |
| 117 | #if defined _WIN64 || defined WIDE_EMACS_INT | 117 | #if defined _WIN64 || defined WIDE_EMACS_INT |
| 118 | # define DUMPED_HEAP_SIZE (18*1024*1024) | 118 | # define DUMPED_HEAP_SIZE (19*1024*1024) |
| 119 | #else | 119 | #else |
| 120 | # define DUMPED_HEAP_SIZE (11*1024*1024) | 120 | # define DUMPED_HEAP_SIZE (12*1024*1024) |
| 121 | #endif | 121 | #endif |
| 122 | 122 | ||
| 123 | static unsigned char dumped_data[DUMPED_HEAP_SIZE]; | 123 | static unsigned char dumped_data[DUMPED_HEAP_SIZE]; |