Remove unnecessary logging from kern/thread.c

This commit is contained in:
Ali Mashtizadeh 2015-01-16 20:29:45 -08:00
parent 102520ec1b
commit 89ac71a773

View File

@ -222,7 +222,6 @@ Thread_SetZombie(Thread *thr)
thr->schedState = SCHED_STATE_ZOMBIE;
if (thr->proc) {
TAILQ_INSERT_TAIL(&thr->proc->zombieQueue, thr, schedQueue);
kprintf("ZOMBIEQUEUE\n");
} else {
kprintf("ERROR: Thread not associated with process and no zombie queue!\n");
}