Remove unnecessary logging from kern/thread.c

This commit is contained in:
Ali Mashtizadeh 2015-01-16 20:22:01 -08:00
parent 34c637960a
commit 102520ec1b

View File

@ -254,12 +254,9 @@ Thread_Wait(Thread *thr, uint64_t tid)
ASSERT(thr->proc != NULL);
Thread_Dump(thr);
if (tid == 0) {
t = TAILQ_FIRST(&thr->proc->zombieQueue);
if (!t) {
kprintf("EMPTY %llx\n", t);
return 0;
}