From: Juanma Barranquero Date: Tue, 3 Jun 2014 22:13:17 +0000 (+0200) Subject: src/w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB. X-Git-Tag: emacs-25.0.90~2639^2~128 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6348c9d718c322929b184fc17a778951345455d8;p=emacs.git src/w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5707c6e56f5..48f82e9ef42 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-06-03 Juanma Barranquero + + * w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB. + 2014-06-03 Eli Zaretskii * 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 { #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];