comparison src/puresize.h @ 12986:180f04639e71

(SITELOAD_PURESIZE_EXTRA): New macro. (BASE_PURESIZE): Use SITELOAD_PURESIZE_EXTRA.
author Richard M. Stallman <rms@gnu.org>
date Sat, 02 Sep 1995 16:18:26 +0000
parents 9d8cf42ed0ba
children 7b2f71009e4c
comparison
equal deleted inserted replaced
12985:3adacdaa1d3f 12986:180f04639e71
34 BASE_PURESIZE or even PURESIZE directly. */ 34 BASE_PURESIZE or even PURESIZE directly. */
35 #ifndef SYSTEM_PURESIZE_EXTRA 35 #ifndef SYSTEM_PURESIZE_EXTRA
36 #define SYSTEM_PURESIZE_EXTRA 0 36 #define SYSTEM_PURESIZE_EXTRA 0
37 #endif 37 #endif
38 38
39 #ifndef SITELOAD_PURESIZE_EXTRA
40 #define SITELOAD_PURESIZE_EXTRA 0
41 #endif
42
39 #ifndef BASE_PURESIZE 43 #ifndef BASE_PURESIZE
40 #ifdef MULTI_FRAME 44 #ifdef MULTI_FRAME
41 #define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA) 45 #define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
42 #else 46 #else
43 #define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA) 47 #define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
44 #endif 48 #endif
45 #endif 49 #endif
46 50
47 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 51 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
48 #ifndef PURESIZE_RATIO 52 #ifndef PURESIZE_RATIO