(Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars

before and after unexec.
This commit is contained in:
Gerd Moellmann 2000-09-06 21:25:22 +00:00
parent 93c27ef1aa
commit 2b7377cadb

View file

@ -1974,8 +1974,15 @@ You must run Emacs in batch mode in order to dump it.")
#ifdef DOUG_LEA_MALLOC
malloc_state_ptr = malloc_get_state ();
#endif
#ifdef REL_ALLOC_MMAP
mmap_set_vars (0);
#endif
unexec (XSTRING (filename)->data,
!NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
#ifdef REL_ALLOC_MMAP
mmap_set_vars (1);
#endif
#ifdef DOUG_LEA_MALLOC
free (malloc_state_ptr);
#endif