aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sheap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sheap.h b/src/sheap.h
index db059d287c4..c229a1b06ed 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/>. */
21#include "lisp.h" 21#include "lisp.h"
22 22
23/* Size of the static heap. Guess a value that is probably too large, 23/* Size of the static heap. Guess a value that is probably too large,
24 by up to a factor of two or so. Typically the unused part is not 24 by up to a factor of four or so. Typically the unused part is not
25 paged in and so does not cost much. */ 25 paged in and so does not cost much. */
26enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 21 }; 26enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 22 };
27 27
28extern char bss_sbrk_buffer[STATIC_HEAP_SIZE]; 28extern char bss_sbrk_buffer[STATIC_HEAP_SIZE];
29extern char *max_bss_sbrk_ptr; 29extern char *max_bss_sbrk_ptr;