Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/list/
H A Dlist.c50 lnew->list_prev = (node); \
51 lnew->list_next = (node)->list_next; \
52 (node)->list_next->list_prev = lnew; \
53 (node)->list_next = lnew; \
58 lnew->list_next = (node); \
61 (node)->list_prev = lnew; \
225 ASSERT(!list_link_active(lnew)); in list_link_replace()
227 lnew->list_next = lold->list_next; in list_link_replace()
228 lnew->list_prev = lold->list_prev; in list_link_replace()
229 lold->list_prev->list_next = lnew; in list_link_replace()
[all …]