X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/da396c5e1f1ca2c18c036d4d0e177e34f7ca33b5..a4766fd5e67e014c5a5ace2bab86810fc6212a51:/src/vm-limit.c diff --git a/src/vm-limit.c b/src/vm-limit.c index ea99ebdae9..0dc89098af 100644 --- a/src/vm-limit.c +++ b/src/vm-limit.c @@ -15,10 +15,11 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ #ifdef emacs -#include "config.h" +#include #include "lisp.h" #endif @@ -44,31 +45,38 @@ static int warnlevel; 0 means don't issue them. */ static void (*warn_function) (); -extern POINTER sbrk (); - /* Get more memory space, complaining if we're near the end. */ -static POINTER -morecore_with_warning (size) - register int size; +static void +check_memory_limits () { - POINTER result; +#ifdef REL_ALLOC + extern POINTER (*real_morecore) (); +#endif + extern POINTER (*__morecore) (); + + register POINTER cp; - int five_percent; - int data_size; + unsigned long five_percent; + unsigned long data_size; if (lim_data == 0) get_lim_data (); five_percent = lim_data / 20; /* Find current end of memory and issue warning if getting near max */ - cp = sbrk (0); +#ifdef REL_ALLOC + if (real_morecore) + cp = (char *) (*real_morecore) (0); + else +#endif + cp = (char *) (*__morecore) (0); data_size = (char *) cp - (char *) data_space_start; if (warn_function) switch (warnlevel) { - case 0: + case 0: if (data_size > five_percent * 15) { warnlevel++; @@ -76,7 +84,7 @@ morecore_with_warning (size) } break; - case 1: + case 1: if (data_size > five_percent * 17) { warnlevel++; @@ -84,7 +92,7 @@ morecore_with_warning (size) } break; - case 2: + case 2: if (data_size > five_percent * 19) { warnlevel++; @@ -112,11 +120,6 @@ morecore_with_warning (size) if (EXCEEDS_LISP_PTR (cp)) (*warn_function) ("Warning: memory in use exceeds lisp pointer size"); - - result = sbrk (size); - if (result == (POINTER) -1) - return NULL; - return result; } /* Cause reinitialization based on job parameters; @@ -127,7 +130,7 @@ memory_warnings (start, warnfun) POINTER start; void (*warnfun) (); { - extern POINTER (* __morecore) (); /* From gmalloc.c */ + extern void (* __after_morecore_hook) (); /* From gmalloc.c */ if (start) data_space_start = start; @@ -135,5 +138,13 @@ memory_warnings (start, warnfun) data_space_start = start_of_data (); warn_function = warnfun; - __morecore = &morecore_with_warning; + __after_morecore_hook = check_memory_limits; + +#ifdef WINDOWSNT + /* Force data limit to be recalculated on each run. */ + lim_data = 0; +#endif } + +/* arch-tag: eab04eda-1f69-447a-8d9f-95f0a3983ca5 + (do not change this comment) */