From: Richard M. Stallman Date: Sat, 12 Jul 1997 07:07:26 +0000 (+0000) Subject: (main): Use setrlimit only if RLIMIT_STACK. X-Git-Tag: emacs-20.1~1188 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea2acec55b169b4978569fcdbd4c0b70256df313;p=emacs.git (main): Use setrlimit only if RLIMIT_STACK. (main) [DOUG_LEA_MALLOC]: Call r_alloc_reinit when restarting a dumped Emacs. --- diff --git a/src/emacs.c b/src/emacs.c index 43f8d27b3ea..bf701f8666c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -501,6 +501,7 @@ main (argc, argv, envp) { malloc_set_state (malloc_state_ptr); free (malloc_state_ptr); + r_alloc_reinit (); } #endif @@ -577,7 +578,7 @@ main (argc, argv, envp) #endif /* LINK_CRTL_SHARE */ #endif /* VMS */ -#ifdef HAVE_SETRLIMIT +#if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK) /* Extend the stack space available. */ if (!getrlimit (RLIMIT_STACK, &rlim)) { @@ -598,7 +599,7 @@ main (argc, argv, envp) setrlimit (RLIMIT_STACK, &rlim); } -#endif +#endif /* HAVE_SETRLIMIT and RLIMIT_STACK */ /* Record (approximately) where the stack begins. */ stack_bottom = &stack_bottom_variable;