Searched refs:head2 (Results 1 – 1 of 1) sorted by relevance
274 #define STAILQ_CONCAT(head1, head2) do { \ argument275 if (!STAILQ_EMPTY((head2))) { \276 *(head1)->stqh_last = (head2)->stqh_first; \277 (head1)->stqh_last = (head2)->stqh_last; \278 STAILQ_INIT((head2)); \445 #define TAILQ_CONCAT(head1, head2, field) do { \ argument446 if (!TAILQ_EMPTY(head2)) { \447 *(head1)->tqh_last = (head2)->tqh_first; \448 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \449 (head1)->tqh_last = (head2)->tqh_last; \[all …]
Completed in 5 milliseconds