* src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.
This commit is contained in:
parent
50b3e9d23d
commit
631b3fbde7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue