src/w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB.

This commit is contained in:
Juanma Barranquero 2014-06-04 00:13:17 +02:00
parent 71b2605c95
commit 6348c9d718
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2014-06-03 Juanma Barranquero <lekktu@gmail.com>
* w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB.
2014-06-03 Eli Zaretskii <eliz@gnu.org>
* sysselect.h (fd_CLR, fd_ISSET, fd_SET, FD_CLR, FD_ISSET)

View file

@ -117,7 +117,7 @@ typedef struct _RTL_HEAP_PARAMETERS {
#ifdef _WIN64
# define DUMPED_HEAP_SIZE (18*1024*1024)
#else
# define DUMPED_HEAP_SIZE (12*1024*1024)
# define DUMPED_HEAP_SIZE (11*1024*1024)
#endif
static unsigned char dumped_data[DUMPED_HEAP_SIZE];