Home
last modified time | relevance | path

Searched refs:SIMPLEQ_FIRST (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Dqueue.h595 #define SIMPLEQ_FIRST(head) ((head)->sqh_first) macro
601 for ((var) = SIMPLEQ_FIRST((head)); \
612 for ((var) = SIMPLEQ_FIRST((head)); \
628 SIMPLEQ_FIRST((head)) = NULL; \
629 (head)->sqh_last = &SIMPLEQ_FIRST((head)); \
636 SIMPLEQ_FIRST((head)) = (elm); \
656 if ((SIMPLEQ_FIRST((head)) = \
657 SIMPLEQ_NEXT(SIMPLEQ_FIRST((head)), field)) == NULL) \
658 (head)->sqh_last = &SIMPLEQ_FIRST((head)); \
670 if (SIMPLEQ_FIRST((head)) == (elm)) { \
[all …]
/illumos-gate/usr/src/uts/common/io/skd/
H A Dskd.c3732 pbuf = SIMPLEQ_FIRST(&skdev->waitqueue); in skd_get_queued_pbuf()