aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmalloc.c
diff options
context:
space:
mode:
authorKenichi Handa2004-04-16 12:51:06 +0000
committerKenichi Handa2004-04-16 12:51:06 +0000
commit6b61353c0a0320ee15bb6488149735381fed62ec (patch)
treee69adba60e504a5a37beb556ad70084de88a7aab /src/gmalloc.c
parentdc6a28319312fe81f7a1015e363174022313f0bd (diff)
downloademacs-6b61353c0a0320ee15bb6488149735381fed62ec.tar.gz
emacs-6b61353c0a0320ee15bb6488149735381fed62ec.zip
Sync to HEAD
Diffstat (limited to 'src/gmalloc.c')
-rw-r--r--src/gmalloc.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c
index 7c654e1ece1..eae83a74eb6 100644
--- a/src/gmalloc.c
+++ b/src/gmalloc.c
@@ -352,6 +352,10 @@ Cambridge, MA 02139, USA.
352#include <errno.h> 352#include <errno.h>
353 353
354/* How to really get more memory. */ 354/* How to really get more memory. */
355#if defined(CYGWIN)
356extern __ptr_t bss_sbrk PP ((ptrdiff_t __size));
357extern int bss_sbrk_did_unexec;
358#endif
355__ptr_t (*__morecore) PP ((ptrdiff_t __size)) = __default_morecore; 359__ptr_t (*__morecore) PP ((ptrdiff_t __size)) = __default_morecore;
356 360
357/* Debugging hook for `malloc'. */ 361/* Debugging hook for `malloc'. */
@@ -1572,7 +1576,14 @@ __ptr_t
1572__default_morecore (increment) 1576__default_morecore (increment)
1573 __malloc_ptrdiff_t increment; 1577 __malloc_ptrdiff_t increment;
1574{ 1578{
1575 __ptr_t result = (__ptr_t) __sbrk (increment); 1579 __ptr_t result;
1580#if defined(CYGWIN)
1581 if (!bss_sbrk_did_unexec)
1582 {
1583 return bss_sbrk (increment);
1584 }
1585#endif
1586 result = (__ptr_t) __sbrk (increment);
1576 if (result == (__ptr_t) -1) 1587 if (result == (__ptr_t) -1)
1577 return NULL; 1588 return NULL;
1578 return result; 1589 return result;
@@ -1978,3 +1989,6 @@ mprobe (__ptr_t ptr)
1978} 1989}
1979 1990
1980#endif /* GC_MCHECK */ 1991#endif /* GC_MCHECK */
1992
1993/* arch-tag: 93dce5c0-f49a-41b5-86b1-f91c4169c02e
1994 (do not change this comment) */