From 59f970afba465685cc72b94a9dab0c17fa7e145d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 31 Jan 1995 20:10:07 +0000 Subject: [PATCH] (main) [REL_ALLOC]: Set __malloc_extra_blocks. --- src/emacs.c | 6 ++++++ 1 file changed, 6 insertions(+) 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! */ -- 2.39.5