Home | History | Annotate | Download | only in thread

Lines Matching refs:nt

16     struct thread *st, *nt, *best;
49 nt = st = container_of(curr->list.next, struct thread, list);
51 if (__unlikely(nt->thread_magic != THREAD_MAGIC)) {
53 nt, nt->thread_magic);
57 dprintf("Thread %p (%s) ", nt, nt->name);
58 if (!nt->blocked) {
59 dprintf("runnable priority %d\n", nt->prio);
60 if (!best || nt->prio < best->prio)
61 best = nt;
65 nt = container_of(nt->list.next, struct thread, list);
66 } while (nt != st);