Mercurial > emacs
changeset 10615:db11ebed6573
Fix previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 31 Jan 1995 20:16:07 +0000 |
parents | d761a113d9a8 |
children | a43d97d12de3 |
files | src/emacs.c |
diffstat | 1 files changed, 9 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Tue Jan 31 20:10:07 1995 +0000 +++ b/src/emacs.c Tue Jan 31 20:16:07 1995 +0000 @@ -469,12 +469,6 @@ 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! */ @@ -490,6 +484,15 @@ #endif /* LINK_CRTL_SHARE */ #endif /* VMS */ +#ifdef REL_ALLOC + /* Make some hysteresis in malloc + if it has to get its space from the relocating allocator. */ + { + extern int __malloc_extra_blocks; + __malloc_extra_blocks = 32; + } +#endif + /* Record (approximately) where the stack begins. */ stack_bottom = &stack_bottom_variable;