diff options
| author | Paul Eggert | 2016-02-01 08:49:46 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-02-01 08:50:10 -0800 |
| commit | a39a03a3bf6c1ec522d7b7d6b7f2bf8271ed1a2f (patch) | |
| tree | d401ad30231e27aa1e26ab732db04ed80f8e55c5 | |
| parent | a95ea03dea9a3207e2ca292e1daaf186001f74f2 (diff) | |
| download | emacs-a39a03a3bf6c1ec522d7b7d6b7f2bf8271ed1a2f.tar.gz emacs-a39a03a3bf6c1ec522d7b7d6b7f2bf8271ed1a2f.zip | |
Double static heap size.
* src/sheap.h (STATIC_HEAP_SIZE): Double it, since it was too
small on FreeBSD (Bug#22086).
| -rw-r--r-- | src/sheap.h | 4 |
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. */ |
| 26 | enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 21 }; | 26 | enum { STATIC_HEAP_SIZE = sizeof (Lisp_Object) << 22 }; |
| 27 | 27 | ||
| 28 | extern char bss_sbrk_buffer[STATIC_HEAP_SIZE]; | 28 | extern char bss_sbrk_buffer[STATIC_HEAP_SIZE]; |
| 29 | extern char *max_bss_sbrk_ptr; | 29 | extern char *max_bss_sbrk_ptr; |