comparison src/emacs.c @ 899:08513f26c519

[xemacs-hg @ 2002-07-04 13:57:00 by michaels] 2002-07-03 Mike Sperber <mike@xemacs.org> * emacs.c (main_1): We need to call init_ralloc twice for PDUMP, otherwice ralloc won't do anything for us.
author michaels
date Thu, 04 Jul 2002 13:57:03 +0000
parents 79c6ff3eef26
children 2fd2239ea63a
comparison
equal deleted inserted replaced
898:b0c24ea6a2a8 899:08513f26c519
787 clearerr (stdin); 787 clearerr (stdin);
788 788
789 #if defined (HAVE_MMAP) && defined (REL_ALLOC) 789 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
790 /* ralloc can only be used if using the GNU memory allocator. */ 790 /* ralloc can only be used if using the GNU memory allocator. */
791 init_ralloc (); 791 init_ralloc ();
792 #ifdef PDUMP
793 init_ralloc ();
794 #endif
792 #elif defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC) 795 #elif defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC)
793 if (initialized) 796 if (initialized)
794 init_ralloc(); 797 init_ralloc();
795 #endif 798 #endif
796 799