GNU bug report logs -
#2685
Emergency (alloc): Warning: past 85% of memory limit
Previous Next
Reported by: Laurent GUERBY <laurent <at> guerby.net>
Date: Mon, 16 Mar 2009 11:25:04 UTC
Severity: normal
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
Message #20 received at 2685 <at> emacsbugs.donarmstrong.com (full text, mbox):
The problem is that Emacs is not determining the start of the data
segment properly on MIPS machines. In src/m/mips.h, we define
DATA_START as 0x10000000. There must be a reason for this, but it's
wrong on the machine you provided for testing; there, __morecore reports
the memory break (which must lie inside the data segment) as a value
less than 0x10000000.
If I comment out DATA_START, so that Emacs uses another method to
determine the start of the data segment size, everything seems to work
OK. But I don't know if this may lead to a different bug elsewhere.
*** trunk/src/m/mips.h.~1.42.~ 2009-03-12 09:42:54.000000000 -0400
--- trunk/src/m/mips.h 2009-05-22 00:34:03.000000000 -0400
***************
*** 49,55 ****
/* Describe layout of the address space in an executing process. */
#define TEXT_START 0x00400000
! #define DATA_START 0x10000000
#if 0 /* These definitions were advantageous when not using
--- 49,55 ----
/* Describe layout of the address space in an executing process. */
#define TEXT_START 0x00400000
! /* #define DATA_START 0x10000000 */
#if 0 /* These definitions were advantageous when not using
This bug report was last modified 15 years and 364 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.