diff options
| author | Juanma Barranquero | 2014-06-04 00:13:17 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2014-06-04 00:13:17 +0200 |
| commit | 6348c9d718c322929b184fc17a778951345455d8 (patch) | |
| tree | 2d0232d6f69260483107a4fe6795f47f2d221c00 /src | |
| parent | 71b2605c959c8ccc6eb54ae147f98105dce369cb (diff) | |
| download | emacs-6348c9d718c322929b184fc17a778951345455d8.tar.gz emacs-6348c9d718c322929b184fc17a778951345455d8.zip | |
src/w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/w32heap.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5707c6e56f5..48f82e9ef42 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-06-03 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB. | ||
| 4 | |||
| 1 | 2014-06-03 Eli Zaretskii <eliz@gnu.org> | 5 | 2014-06-03 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * sysselect.h (fd_CLR, fd_ISSET, fd_SET, FD_CLR, FD_ISSET) | 7 | * sysselect.h (fd_CLR, fd_ISSET, fd_SET, FD_CLR, FD_ISSET) |
diff --git a/src/w32heap.c b/src/w32heap.c index e6ca432a5ef..011bffdc9ab 100644 --- a/src/w32heap.c +++ b/src/w32heap.c | |||
| @@ -117,7 +117,7 @@ typedef struct _RTL_HEAP_PARAMETERS { | |||
| 117 | #ifdef _WIN64 | 117 | #ifdef _WIN64 |
| 118 | # define DUMPED_HEAP_SIZE (18*1024*1024) | 118 | # define DUMPED_HEAP_SIZE (18*1024*1024) |
| 119 | #else | 119 | #else |
| 120 | # define DUMPED_HEAP_SIZE (12*1024*1024) | 120 | # define DUMPED_HEAP_SIZE (11*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]; |