comparison src/puresize.h @ 9572:b36d5e88cccc

*** empty log message ***
author Morten Welinder <terra@diku.dk>
date Mon, 17 Oct 1994 08:42:36 +0000
parents 5617d313ea94
children 705684b6f2a4
comparison
equal deleted inserted replaced
9571:b37425ecb3f0 9572:b36d5e88cccc
27 whether we are running X windows, which tells us how much pure 27 whether we are running X windows, which tells us how much pure
28 storage to allocate. */ 28 storage to allocate. */
29 29
30 /* First define a measure of the amount of data we have. */ 30 /* First define a measure of the amount of data we have. */
31 31
32 /* A system configuration file may set this to request a certain extra
33 amount of storage. This is a lot more update-robust that defining
34 BASE_PURESIZE or even PURESIZE directly. */
35 #ifndef SYSTEM_PURESIZE_EXTRA
36 #define SYSTEM_PURESIZE_EXTRA 0
37 #endif
38
32 #ifndef BASE_PURESIZE 39 #ifndef BASE_PURESIZE
33 #ifdef MULTI_FRAME 40 #ifdef MULTI_FRAME
34 #define BASE_PURESIZE 265000 41 #define BASE_PURESIZE (265000 + SYSTEM_PURESIZE_EXTRA)
35 #else 42 #else
36 #define BASE_PURESIZE 220000 43 #define BASE_PURESIZE (220000 + SYSTEM_PURESIZE_EXTRA)
37 #endif 44 #endif
38 #endif 45 #endif
39 46
40 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ 47 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
41 #ifndef PURESIZE_RATIO 48 #ifndef PURESIZE_RATIO