#define TAILQ_INSERT_TAIL ( head,
elm,
field   ) 

Value:

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

Definition at line 159 of file queue.h.

Referenced by __txn_begin(), CDB___db_c_close(), CDB___db_icursor(), CDB___db_join(), CDB___db_map_rmid(), and CDB___memp_fopen().


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