bump version to 370.7

svn: r7035
This commit is contained in:
Matthew Flatt 2007-08-06 19:37:12 +00:00
parent c877c0a2d8
commit cd80ab6db9
3 changed files with 1290 additions and 1279 deletions

View File

@ -1973,8 +1973,13 @@ void GC_init_type_tags(int count, int pair, int weakbox, int ephemeron, int weak
if(!initialized) {
initialized = 1;
/* Our best guess at what the OS will let us allocate: */
max_heap_size = determine_max_heap_size();
pages_in_heap = max_heap_size / APAGE_SIZE;
/* Not all of that memory is available for allocating GCable
objects. There's the memory used by the stack, code,
malloc()/free()ed memory, etc., and there's also the
administrative structures for the GC itself. */
max_used_pages = pages_in_heap / 2;
resize_gen0(INIT_GEN0_SIZE);

File diff suppressed because it is too large Load Diff

View File

@ -9,6 +9,6 @@
#define MZSCHEME_VERSION_MAJOR 370
#define MZSCHEME_VERSION_MINOR 6
#define MZSCHEME_VERSION_MINOR 7
#define MZSCHEME_VERSION "370.6" _MZ_SPECIAL_TAG
#define MZSCHEME_VERSION "370.7" _MZ_SPECIAL_TAG