#define TAILQ_INSERT_AFTER ( head,
listelm,
elm,
field   ) 

Value:

do {            \
        if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\
                (elm)->field.tqe_next->field.tqe_prev =         \
                    &(elm)->field.tqe_next;                             \
        else                                                            \
                (head)->tqh_last = &(elm)->field.tqe_next;              \
        (listelm)->field.tqe_next = (elm);                              \
        (elm)->field.tqe_prev = &(listelm)->field.tqe_next;             \
} while (0)

Definition at line 166 of file queue.h.


Generated on Sun Jun 8 10:56:55 2008 for GNUmifluz by  doxygen 1.5.5