Lines Matching defs:thr
54 struct thread *thr;
58 thr = db_lookup_thread(tid, false);
59 if (thr != NULL) {
60 err = kdb_thr_select(thr);
63 (long)thr->td_tid);
82 struct thread *thr;
84 thr = kdb_thr_first();
85 while (!db_pager_quit && thr != NULL) {
86 db_printf(" %6ld (%p) (stack %p) ", (long)thr->td_tid, thr,
87 (void *)thr->td_kstack);
90 if (db_trace_thread(thr, 1) != 0)
94 thr = kdb_thr_next(thr);