projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50b3e9d
)
* src/sheap.h (STATIC_HEAP_SIZE): Double the size of static heap.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 2 Jul 2022 09:16:33 +0000
(12:16 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 2 Jul 2022 09:16:33 +0000
(12:16 +0300)
src/sheap.h
patch
|
blob
|
history
diff --git
a/src/sheap.h
b/src/sheap.h
index 297b7cf317dda5dc430451da0ff5f00fe9c49b3c..9133f0b292fb72dce358ab125139a07a406dd58d 100644
(file)
--- 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) << 2
2
};
+enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 2
3
};
extern char bss_sbrk_buffer[STATIC_HEAP_SIZE];
extern char *max_bss_sbrk_ptr;