Comment out scheduler noise

This commit is contained in:
Tony Garnock-Jones 2011-01-01 21:12:35 -05:00
parent 6c9c026a20
commit a5c2ec5830
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void boot_harness(void) {
while (runlist.count) {
queue_t work = runlist;
runlist = EMPTY_PROCESS_QUEUE;
info("Processing %d jobs\n", work.count);
//info("Processing %d jobs\n", work.count);
while ((current_process = dequeue(&work)) != NULL) {
//info("entering %p\n", current_process);
ICHECK(swapcontext(&scheduler, &current_process->context), "boot_harness swapcontext");