Better code heap

db4
Slava Pestov 2008-02-25 20:09:52 -06:00
parent fc1cd50800
commit 4ee8a0cfa6
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ CELL allot_code_block(CELL size)
/* Insufficient room even after code GC, give up */
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;

View File

@ -19,7 +19,7 @@ void default_parameters(F_PARAMETERS *p)
p->rs_size = 32 * CELLS;
p->gen_count = 3;
p->code_size = 4 * CELLS;
p->code_size = 8 * CELLS;
p->young_size = 2 * CELLS;
p->aging_size = 4 * CELLS;
#endif