bump version to 370.7
svn: r7035
This commit is contained in:
parent
c877c0a2d8
commit
cd80ab6db9
|
@ -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
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user