diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-31 20:10:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-31 20:10:07 +0000 |
commit | cc13f544a2d1e2ece9c477b252eac18f815075e6 (patch) | |
tree | 81e82b7e5ecb386a605150c0c6317e75aa2bfb8c /src/emacs.c | |
parent | f4148cb0a1c8096e30e397186ef23c9491759568 (diff) | |
download | emacs-cc13f544a2d1e2ece9c477b252eac18f815075e6.tar.gz |
(main) [REL_ALLOC]: Set __malloc_extra_blocks.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c index ac3263386a5..764e0734569 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -469,6 +469,12 @@ main (argc, argv, envp) mapin_data (file); } +#ifdef REL_ALLOC + /* Make some hysteresis in malloc + if it has to get its space from the relocating allocator. */ + __malloc_extra_blocks = 32; +#endif + #ifdef LINK_CRTL_SHARE #ifdef SHAREABLE_LIB_BUG /* Bletcherous shared libraries! */ |