emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master a39a03a: Double static heap size.


From: Paul Eggert
Subject: [Emacs-diffs] master a39a03a: Double static heap size.
Date: Mon, 01 Feb 2016 16:50:14 +0000

branch: master
commit a39a03a3bf6c1ec522d7b7d6b7f2bf8271ed1a2f
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Double static heap size.
    
    * src/sheap.h (STATIC_HEAP_SIZE): Double it, since it was too
    small on FreeBSD (Bug#22086).
---
 src/sheap.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sheap.h b/src/sheap.h
index db059d2..c229a1b 100644
--- a/src/sheap.h
+++ b/src/sheap.h
@@ -21,9 +21,9 @@ along with GNU Emacs.  If not, see 
<http://www.gnu.org/licenses/>.  */
 #include "lisp.h"
 
 /* Size of the static heap.  Guess a value that is probably too large,
-   by up to a factor of two or so.  Typically the unused part is not
+   by up to a factor of four or so.  Typically the unused part is not
    paged in and so does not cost much.  */
-enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 21 };
+enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 22 };
 
 extern char bss_sbrk_buffer[STATIC_HEAP_SIZE];
 extern char *max_bss_sbrk_ptr;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]