Home
last modified time | relevance | path

Searched refs:tlpp (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/disp/
H A Ddisp_lock.c124 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock() local
125 lock_t *lp = *tlpp; in thread_lock()
127 if (lp == *tlpp) { in thread_lock()
141 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock()
167 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock_high() local
168 lock_t *lp = *tlpp; in thread_lock_high()
170 if (lp == *tlpp) in thread_lock_high()
176 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock_high()
/illumos-gate/usr/src/uts/common/os/
H A Dmem_config.c2866 struct transit_list **tlpp; in transit_list_remove() local
2869 tlpp = &trh->trh_head; in transit_list_remove()
2871 while (*tlpp != NULL && *tlpp != tlp) in transit_list_remove()
2872 tlpp = &(*tlpp)->trl_next; in transit_list_remove()
2873 ASSERT(*tlpp != NULL); in transit_list_remove()
2874 if (*tlpp == tlp) in transit_list_remove()
2875 *tlpp = tlp->trl_next; in transit_list_remove()