Changeset 87
- Timestamp:
- 07/01/05 08:58:17 (4 years ago)
- Files:
-
- src/swaps.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/swaps.c
r85 r87 62 62 63 63 /// Smallest allowed swapfile size 64 static memsize_t min_swapsize = TRUNC_TO_PAGE( 12*PAGE_SIZE);64 static memsize_t min_swapsize = TRUNC_TO_PAGE(4*MEGA); 65 65 /// Largest allowed swapfile size 66 66 /** Don't set this too low. The program will learn if it runs into file size 67 67 * limits. 68 68 */ 69 static memsize_t max_swapsize = TRUNC_TO_PAGE( TERA);69 static memsize_t max_swapsize = TRUNC_TO_PAGE(2*TERA); 70 70 71 71
