Remove some info() scheduling noise

This commit is contained in:
Tony Garnock-Jones 2010-12-29 09:21:58 -05:00
parent 615dce02b1
commit 78fc0a40a0
1 changed files with 2 additions and 2 deletions

View File

@ -261,10 +261,10 @@ void boot_harness(void) {
ICHECK(swapcontext(&scheduler, &current_process->context), "boot_harness swapcontext"); ICHECK(swapcontext(&scheduler, &current_process->context), "boot_harness swapcontext");
clean_dead_processes(); clean_dead_processes();
} }
info("Polling for events\n"); //info("Polling for events\n");
event_loop(EVLOOP_NONBLOCK); event_loop(EVLOOP_NONBLOCK);
} }
info("Blocking for events\n"); //info("Blocking for events\n");
event_loop(EVLOOP_ONCE); event_loop(EVLOOP_ONCE);
} }
} }