]> git.eshelyaron.com Git - emacs.git/commitdiff
Double static heap size.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Feb 2016 16:49:46 +0000 (08:49 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 1 Feb 2016 16:50:10 +0000 (08:50 -0800)
* src/sheap.h (STATIC_HEAP_SIZE): Double it, since it was too
small on FreeBSD (Bug#22086).

src/sheap.h

index db059d287c459b5217c4ee2aa4b252ec8a013e5c..c229a1b06ede3648df566751b00747907576d1b2 100644 (file)
@@ -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;