* src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.

This commit is contained in:
Eli Zaretskii 2022-07-02 12:16:33 +03:00
parent 50b3e9d23d
commit 631b3fbde7

View file

@ -23,7 +23,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
/* Size of the static heap. Guess a value that is probably too large,
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) << 22 };
enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 23 };
extern char bss_sbrk_buffer[STATIC_HEAP_SIZE];
extern char *max_bss_sbrk_ptr;