Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/disp/
H A Ddisp_lock.c126 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock() local
127 lock_t *lp = *tlpp; in thread_lock()
129 if (lp == *tlpp) { in thread_lock()
143 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock()
169 lock_t *volatile *tlpp = &t->t_lockp; in thread_lock_high() local
170 lock_t *lp = *tlpp; in thread_lock_high()
172 if (lp == *tlpp) in thread_lock_high()
178 while (lp == *tlpp && LOCK_HELD(lp)) { in thread_lock_high()
/titanic_44/usr/src/uts/common/os/
H A Dmem_config.c2865 struct transit_list **tlpp; in transit_list_remove() local
2868 tlpp = &trh->trh_head; in transit_list_remove()
2870 while (*tlpp != NULL && *tlpp != tlp) in transit_list_remove()
2871 tlpp = &(*tlpp)->trl_next; in transit_list_remove()
2872 ASSERT(*tlpp != NULL); in transit_list_remove()
2873 if (*tlpp == tlp) in transit_list_remove()
2874 *tlpp = tlp->trl_next; in transit_list_remove()