[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 631b3fbde7: * src/sheap.h (STATIC_HEAP_SIZE): Double the size of
From: |
Eli Zaretskii |
Subject: |
master 631b3fbde7: * src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap. |
Date: |
Sat, 2 Jul 2022 05:17:04 -0400 (EDT) |
branch: master
commit 631b3fbde76040fd3545cc9f18e1b7d13b62ad62
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>
* src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.
---
src/sheap.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sheap.h b/src/sheap.h
index 297b7cf317..9133f0b292 100644
--- a/src/sheap.h
+++ b/src/sheap.h
@@ -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;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 631b3fbde7: * src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.,
Eli Zaretskii <=