# HG changeset patch # User Richard M. Stallman # Date 868691083 0 # Node ID 9d6149f4c762100c4a4d64abd90745e60f714d4c # Parent 751f531e5a202f67069bc474dfbc87aade97b9d6 (r_alloc_reinit): New function. diff -r 751f531e5a20 -r 9d6149f4c762 src/ralloc.c --- a/src/ralloc.c Sat Jul 12 06:52:06 1997 +0000 +++ b/src/ralloc.c Sat Jul 12 07:04:43 1997 +0000 @@ -1150,6 +1150,24 @@ virtual_break_value = break_value = first_heap->bloc_start = first_heap->end; use_relocatable_buffers = 1; } + +#if defined (emacs) && defined (DOUG_LEA_MALLOC) + +/* Reinitialize the morecore hook variables after restarting a dumped + Emacs. This is needed when using Doug Lea's malloc from GNU libc. */ +void +r_alloc_reinit () +{ + /* Only do this if the hook has been reset, so that we don't get an + infinite loop, in case Emacs was linked statically. */ + if (__morecore != r_alloc_sbrk) + { + real_morecore = __morecore; + __morecore = r_alloc_sbrk; + } +} +#endif + #ifdef DEBUG #include