Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 2835 → Rev 2836

/branches/tracing/kernel/generic/src/ipc/ipc.c
659,6 → 659,7
spinlock_unlock(&ta->lock);
 
/* FIXME: locking! */
if (ta->kb_thread == NULL) {
ta->kb_thread = thread_create(kbox_thread_proc,
NULL, ta, 0, "kbox", false);
if (!ta->kb_thread)
665,6 → 666,7
return ENOMEM;
 
thread_ready(ta->kb_thread);
}
 
return newphid;
}