diff options
| author | Ken Brown | 2013-07-09 09:56:47 -0400 |
|---|---|---|
| committer | Ken Brown | 2013-07-09 09:56:47 -0400 |
| commit | d74647c382d793c2df2eb5b4756b9742ea57c1cc (patch) | |
| tree | dcbccbc1ac7b696ad9866b0497d9aaa711e010cf /src | |
| parent | d236c30240ace745267139304fee11d1ea79fa7b (diff) | |
| download | emacs-d74647c382d793c2df2eb5b4756b9742ea57c1cc.tar.gz emacs-d74647c382d793c2df2eb5b4756b9742ea57c1cc.zip | |
* src/sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/sheap.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 024be050b3e..a96f1153ef0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-07-09 Ken Brown <kbrown@cornell.edu> | ||
| 2 | |||
| 3 | * sheap.c (STATIC_HEAP_SIZE) [__x86_64__]: Increase to 18MB. | ||
| 4 | |||
| 1 | 2013-07-09 Juanma Barranquero <lekktu@gmail.com> | 5 | 2013-07-09 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/sysdep.$(O)): Update. | 7 | * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/sysdep.$(O)): Update. |
diff --git a/src/sheap.c b/src/sheap.c index f8eec753268..54eef60c27d 100644 --- a/src/sheap.c +++ b/src/sheap.c | |||
| @@ -25,7 +25,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 25 | 25 | ||
| 26 | #include <unistd.h> | 26 | #include <unistd.h> |
| 27 | 27 | ||
| 28 | #ifdef __x86_64__ | ||
| 29 | #define STATIC_HEAP_SIZE (18 * 1024 * 1024) | ||
| 30 | #else | ||
| 28 | #define STATIC_HEAP_SIZE (13 * 1024 * 1024) | 31 | #define STATIC_HEAP_SIZE (13 * 1024 * 1024) |
| 32 | #endif | ||
| 29 | 33 | ||
| 30 | int debug_sheap = 0; | 34 | int debug_sheap = 0; |
| 31 | 35 | ||