]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB.
authorKen Brown <kbrown@cornell.edu>
Tue, 9 Jul 2013 13:56:47 +0000 (09:56 -0400)
committerKen Brown <kbrown@cornell.edu>
Tue, 9 Jul 2013 13:56:47 +0000 (09:56 -0400)
src/ChangeLog
src/sheap.c

index 024be050b3e0cf443bc7dc753296a900e2240454..a96f1153ef017eb7a02c59ebfa771f7792ccc2a6 100644 (file)
@@ -1,3 +1,7 @@
+2013-07-09  Ken Brown  <kbrown@cornell.edu>
+
+       * sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB.
+
 2013-07-09  Juanma Barranquero  <lekktu@gmail.com>
 
        * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/sysdep.$(O)): Update.
index f8eec7532689f944a708049fb76e3b64b9aa66d3..54eef60c27df554b2afd23faeb05aa50a55df595 100644 (file)
@@ -25,7 +25,11 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #include <unistd.h>
 
+#ifdef __x86_64__
+#define STATIC_HEAP_SIZE       (18 * 1024 * 1024)
+#else
 #define STATIC_HEAP_SIZE       (13 * 1024 * 1024)
+#endif
 
 int debug_sheap = 0;