Lines Matching refs:tid
107 thr->tid = proc->nextThreadID++;
158 thr->tid = proc->nextThreadID++;
224 * @param [in] tid Thread ID of the thread to find.
229 Thread_Lookup(Process *proc, uint64_t tid)
236 if (t->tid == tid) {
276 * Wait for any thread (tid == TID_ANY) or a specific thread.
279 Thread_Wait(Thread *thr, uint64_t tid)
286 if (tid == TID_ANY) {
300 if (t->tid == tid) {
341 kprintf("tid %llu\n", thr->tid);
363 kprintf("Running Thread CPU %d: %d(%016llx) %d\n", i, thr->tid, thr, thr->ctxSwitches);
369 kprintf("Runnable Thread: %d(%016llx) %d\n", thr->tid, thr, thr->ctxSwitches);
374 kprintf("Waiting Thread: %d(%016llx) %d\n", thr->tid, thr, thr->ctxSwitches);