Better code heap
parent
fc1cd50800
commit
4ee8a0cfa6
|
@ -229,7 +229,7 @@ CELL allot_code_block(CELL size)
|
||||||
|
|
||||||
/* Insufficient room even after code GC, give up */
|
/* Insufficient room even after code GC, give up */
|
||||||
if(start == 0)
|
if(start == 0)
|
||||||
critical_error("Out of memory in add-compiled-block",0);
|
fatal_error("Out of memory in add-compiled-block",0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return start;
|
return start;
|
||||||
|
|
|
@ -19,7 +19,7 @@ void default_parameters(F_PARAMETERS *p)
|
||||||
p->rs_size = 32 * CELLS;
|
p->rs_size = 32 * CELLS;
|
||||||
|
|
||||||
p->gen_count = 3;
|
p->gen_count = 3;
|
||||||
p->code_size = 4 * CELLS;
|
p->code_size = 8 * CELLS;
|
||||||
p->young_size = 2 * CELLS;
|
p->young_size = 2 * CELLS;
|
||||||
p->aging_size = 4 * CELLS;
|
p->aging_size = 4 * CELLS;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue