Mercurial > hg > xemacs-beta
comparison src/sheap.c @ 263:727739f917cb r20-5b30
Import from CVS: tag r20-5b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:24:41 +0200 |
parents | 11cf20601dec |
children | 8efd647ea9ca |
comparison
equal
deleted
inserted
replaced
262:9d8607af9e13 | 263:727739f917cb |
---|---|
23 #include <lisp.h> | 23 #include <lisp.h> |
24 #include <stddef.h> | 24 #include <stddef.h> |
25 #include "sheap-adjust.h" | 25 #include "sheap-adjust.h" |
26 | 26 |
27 #ifdef MULE | 27 #ifdef MULE |
28 #define STATIC_HEAP_BASE 0x500000 | 28 #define STATIC_HEAP_BASE 0x600000 |
29 #define STATIC_HEAP_SLOP 0x30000 | 29 #define STATIC_HEAP_SLOP 0x30000 |
30 #else | 30 #else |
31 #define STATIC_HEAP_BASE 0x400000 | 31 #define STATIC_HEAP_BASE 0x500000 |
32 #define STATIC_HEAP_SLOP 0x30000 | 32 #define STATIC_HEAP_SLOP 0x30000 |
33 #endif | 33 #endif |
34 #define STATIC_HEAP_SIZE \ | 34 #define STATIC_HEAP_SIZE \ |
35 (STATIC_HEAP_BASE + SHEAP_ADJUSTMENT + STATIC_HEAP_SLOP) | 35 (STATIC_HEAP_BASE + SHEAP_ADJUSTMENT + STATIC_HEAP_SLOP) |
36 #define BLOCKSIZE (1<<12) | 36 #define BLOCKSIZE (1<<12) |