HomeSort by: relevance | last modified time | path
    Searched refs:cq_next_l (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/sys/
callout.h 86 #define cq_next_l cq_next.list macro
  /src/sys/kern/
kern_timeout.c 137 (list)->cq_next_l = (list); \
144 (elem)->cq_next_l = (list); \
145 (list)->cq_prev_l->cq_next_l = (elem); \
152 (fst)->cq_prev_l->cq_next_l = (snd)->cq_next_l; \
153 (snd)->cq_next_l->cq_prev_l = (fst)->cq_prev_l; \
154 (snd)->cq_prev_l->cq_next_l = (fst); \
162 (elem)->cq_next_l->cq_prev_e = (elem)->cq_prev_e; \
168 #define CIRCQ_LAST(elem,list) ((elem)->cq_next_l == (list))
169 #define CIRCQ_EMPTY(list) ((list)->cq_next_l == (list)
    [all...]

Completed in 11 milliseconds