vm: remove debug messages

db4
Slava Pestov 2009-11-01 20:34:54 -06:00
parent e28580dd0f
commit b2d96e5ef1
1 changed files with 0 additions and 6 deletions

View File

@ -155,10 +155,7 @@ void factor_vm::gc(gc_op op, cell requested_bytes, bool trace_contexts_p)
if(current_gc->op == collect_aging_op || current_gc->op == collect_to_tenured_op)
{
if(data->tenured->free_space() <= data->nursery->size + data->aging->size)
{
printf("upgrade\n");
current_gc->op = collect_full_op;
}
}
current_gc->event->op = current_gc->op;
@ -178,10 +175,7 @@ void factor_vm::gc(gc_op op, cell requested_bytes, bool trace_contexts_p)
collect_mark_impl(trace_contexts_p);
collect_sweep_impl();
if(data->tenured->largest_free_block() <= data->nursery->size + data->aging->size)
{
printf("forced compaction\n");
collect_compact_impl(trace_contexts_p);
}
else
update_code_heap_words_and_literals();
break;