HomeSort by relevance Sort by last modified time
    Searched refs:t_link (Results 1 - 16 of 16) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/os/
sleepq.c 44 * through the t_link field of the thread structure. The doubly linked
71 * thread of that priority found when following the t_link pointers),
72 * t->t_priback->t_link points to the head of the next sublist. It's
82 * pointer to find the thread that points to it with t_link. If it is
87 * To walk the list, simply follow the t_link pointers. Removing
89 * pointer to the t_link field that pointed to the thread being
97 * the t_link pointer that points to tp.
105 /* remove it from the t_link list */
106 *tpp = tp->t_link;
118 tp->t_link = NULL
    [all...]
semaphore.c 91 tpp = &tp->t_link; \
94 curthread->t_link = tp; \
130 tpp = &tp->t_link;
133 t->t_link = tp;
152 *tpp = t->t_link;
153 t->t_link = NULL;
156 tpp = &tp->t_link;
184 *tpp = t->t_link;
185 t->t_link = NULL;
197 tpp = &tp->t_link;
    [all...]
waitq.c 69 * through the t_link field of the thread structure. The doubly linked
96 * thread of that priority found when following the t_link pointers),
97 * t->t_priback->t_link points to the head of the next sublist. It's
107 * pointer to find the thread that points to it with t_link. If it is
112 * To walk the list, simply follow the t_link pointers. Removing
114 * pointer to the t_link field that pointed to the thread being
136 tpp = &last_tp->t_link;
139 t->t_link = next_tp;
163 ptl = &t->t_priback->t_link;
166 * the priorities to find the t_link pointer that points to it
    [all...]
sched.c 95 * The swap queue consists of threads, linked via t_link, which are
523 tpp = &(*tpp)->t_link;
525 *tpp = tp->t_link;
808 tp->t_link = tswap_queue;
847 tswap_queue = tp->t_link;
848 tp->t_link = NULL;
rwlock.c 353 next_reader = next_reader->t_link;
453 if (next_writer->t_link)
panic.c 244 cp->cpu_intr_thread = it->t_link;
  /onnv/onnv-gate/usr/src/uts/common/disp/
thread_intr.c 95 tp->t_link = cp->cpu_intr_thread;
disp.c 788 if ((dq->dq_first = tp->t_link) == NULL) {
815 tp->t_link = NULL;
997 ASSERT(dq->dq_last == NULL || dq->dq_last->t_link == NULL);
999 for (rp = dq->dq_first; rp; rp = rp->t_link)
    [all...]
thread.c     [all...]
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
intr.c 324 cpu->cpu_intr_thread = it->t_link;
407 it->t_link = cpu->cpu_intr_thread;
417 it->t_link = cpu->cpu_intr_thread;
581 cpu->cpu_intr_thread = it->t_link;
662 it->t_link = cpu->cpu_intr_thread;
670 it->t_link = cpu->cpu_intr_thread;
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
cpupart.c 114 taddr = (uintptr_t)t.t_link;
sobj.c 201 * being applied to a live system); we can't believe the t_link pointer
217 ww->ww_thr = (uintptr_t)thr.t_link;
thread.c 297 wsp->walk_addr = (uintptr_t)t.t_link;
genunix.c     [all...]
  /onnv/onnv-gate/usr/src/uts/common/syscall/
lwp_sobj.c     [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
thread.h 111 struct _kthread *t_link; /* dispq, sleepq, and free queue link */ member in struct:_kthread

Completed in 240 milliseconds