comparison src/puresize.h @ 24470:63f1b701ed00

(BASE_PURESIZE): Increase to 505000.
author Karl Heuer <kwzh@gnu.org>
date Wed, 10 Mar 1999 19:58:01 +0000
parents 4307fe505e5f
children 618ea9b539f3
comparison
equal deleted inserted replaced
24469:c23008607eb9 24470:63f1b701ed00
40 #ifndef SITELOAD_PURESIZE_EXTRA 40 #ifndef SITELOAD_PURESIZE_EXTRA
41 #define SITELOAD_PURESIZE_EXTRA 0 41 #define SITELOAD_PURESIZE_EXTRA 0
42 #endif 42 #endif
43 43
44 #ifndef BASE_PURESIZE 44 #ifndef BASE_PURESIZE
45 #define BASE_PURESIZE (500000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) 45 #define BASE_PURESIZE (505000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
46 #endif 46 #endif
47 47
48 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 48 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
49 #ifndef PURESIZE_RATIO 49 #ifndef PURESIZE_RATIO
50 #if VALBITS + GCTYPEBITS + 1 > 32 50 #if VALBITS + GCTYPEBITS + 1 > 32
94 #define PURE_P(obj) \ 94 #define PURE_P(obj) \
95 (XPNTR (obj) < (unsigned int) my_edata) 95 (XPNTR (obj) < (unsigned int) my_edata)
96 96
97 #endif /* PNTR_COMPARISON_TYPE */ 97 #endif /* PNTR_COMPARISON_TYPE */
98 #endif /* VIRT_ADDRESS_VARIES */ 98 #endif /* VIRT_ADDRESS_VARIES */
99