| queue(7) | Miscellaneous Information Manual | queue(7) |
queue - implementations of linked lists and queues
The <sys/queue.h> header file provides a set of macros that define and operate on the following data structures:
All structures support the following functionality:
Code size and execution time depend on the complexity of the data structure being used, so programmers should take care to choose the appropriate one.
Singly linked lists are the simplest and support only the above functionality. Singly linked lists are ideal for applications with large datasets and few or no removals, or for implementing a LIFO queue. Singly linked lists add the following functionality:
Singly linked tail queues add the following functionality:
However:
Singly linked tail queues are ideal for applications with large datasets and few or no removals, or for implementing a FIFO queue.
All doubly linked types of data structures (lists and tail queues) additionally allow:
However:
Linked lists are the simplest of the doubly linked data structures. They add the following functionality over the above:
However:
Tail queues add the following functionality:
However:
Circular queues add the following functionality over the above:
However:
BSD.
<sys/queue.h> macros first appeared in 4.4BSD.
Some BSDs provide SIMPLEQ instead of STAILQ. They are identical, but for historical reasons they were named differently on different BSDs. STAILQ originated on FreeBSD, and SIMPLEQ originated on NetBSD. For compatibility reasons, some systems provide both sets of macros. glibc provides both STAILQ and SIMPLEQ, which are identical except for a missing SIMPLEQ equivalent to STAILQ_CONCAT().
circleq(3), insque(3), list(3), slist(3), stailq(3), tailq(3)
| 2023-10-31 | Linux man-pages 6.7 |