From: Ken Brown Date: Tue, 9 Jul 2013 13:56:47 +0000 (-0400) Subject: * src/sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1866 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d74647c382d793c2df2eb5b4756b9742ea57c1cc;p=emacs.git * src/sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB. --- diff --git a/src/ChangeLog b/src/ChangeLog index 024be050b3e..a96f1153ef0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-07-09 Ken Brown + + * sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB. + 2013-07-09 Juanma Barranquero * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/sysdep.$(O)): Update. diff --git a/src/sheap.c b/src/sheap.c index f8eec753268..54eef60c27d 100644 --- a/src/sheap.c +++ b/src/sheap.c @@ -25,7 +25,11 @@ along with GNU Emacs. If not, see . */ #include +#ifdef __x86_64__ +#define STATIC_HEAP_SIZE (18 * 1024 * 1024) +#else #define STATIC_HEAP_SIZE (13 * 1024 * 1024) +#endif int debug_sheap = 0;