X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/e231fd422ebaab39dd7b4d46542900954227f8bd..6f96f4c9e7c8f25e7cc517b561ac741ba6f31018:/src/vm-limit.c diff --git a/src/vm-limit.c b/src/vm-limit.c index 5a20d4cd6f..b23beeb26e 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 @@ -42,30 +43,28 @@ static int warnlevel; /* Function to call to issue a warning; 0 means don't issue them. */ -static void (*warnfunction) (); - -extern POINTER sbrk (); +static void (*warn_function) (); /* 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; + 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); - data_size = cp - data_space_start; + cp = (char *) (*__morecore) (0); + data_size = (char *) cp - (char *) data_space_start; - if (warnfunction) + if (warn_function) switch (warnlevel) { case 0: @@ -111,12 +110,7 @@ morecore_with_warning (size) warnlevel = 2; if (EXCEEDS_LISP_PTR (cp)) - (*warnfunction) ("Warning: memory in use exceeds lisp pointer size"); - - result = sbrk (size); - if (result == (POINTER) -1) - return NULL; - return result; + (*warn_function) ("Warning: memory in use exceeds lisp pointer size"); } /* Cause reinitialization based on job parameters; @@ -127,13 +121,13 @@ 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; else data_space_start = start_of_data (); - warnfunction = warnfun; - __morecore = &morecore_with_warning; + warn_function = warnfun; + __after_morecore_hook = check_memory_limits; }