- t2ex
- bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
111: #define SLIST_END(head) NULL
112: #define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head))
113: #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
- More results from queue.h
- bsd_source/lib/libc/src_bsd/search/hcreate.c - 5.7KB - 186 lines
139: while (!SLIST_EMPTY(&htab->table[idx])) {
140: ie = SLIST_FIRST(&htab->table[idx]);
141: SLIST_REMOVE_HEAD(&htab->table[idx], link);
- More results from hcreate.c
- bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
717:
718: while ((pa = SLIST_FIRST(&pa_deferinitq)) != NULL) {
719: KASSERT(pa->pa_backingmapptr != NULL);
- bsd_source/t2ex/network/net/src_bsd/kern/sys_select.c - 30.3KB - 961 lines
780: mutex_spin_enter(&sc->sc_lock);
781: for (sip = SLIST_FIRST(&l->l_selwait); sip != NULL; sip = next) {
782: KASSERT(sip->sel_lwp == l);
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
312: else
313: p = SLIST_FIRST(&m->m_pkthdr.tags);
314: if (p == NULL)
- More results from uipc_mbuf2.c