]> code.delx.au - gnu-emacs/commitdiff
src/w32heap.c (DUMPED_HEAP_SIZE) [!_WIN64]: Reduce to 11 MB.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 3 Jun 2014 22:13:17 +0000 (00:13 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 3 Jun 2014 22:13:17 +0000 (00:13 +0200)
src/ChangeLog
src/w32heap.c

index 5707c6e56f54ab942a6f887a19415f4cc25aca17..48f82e9ef42fe3fca5173cd4aa452ac0b9daf810 100644 (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)
index e6ca432a5ef8074ca18bc4247a15a1315d4f2fd7..011bffdc9abd9d9ca8ae11bb547a7eee3d373f2a 100644 (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];