NAME

queue - implementations of linked lists and queues

DESCRIPTION

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 (SLIST)

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 (STAILQ)

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.

Doubly linked data structures

All doubly linked types of data structures (lists and tail queues) additionally allow:

However:

Doubly linked lists (LIST)

Linked lists are the simplest of the doubly linked data structures. They add the following functionality over the above:

However:

Doubly linked tail queues (TAILQ)

Tail queues add the following functionality:

However:

Doubly linked circular queues (CIRCLEQ)

Circular queues add the following functionality over the above:

However:

CONFORMING TO

Not in POSIX.1, POSIX.1-2001 or POSIX.1-2008. Present on the BSDs. <sys/queue.h> macros first appeared in 4.4BSD.

SEE ALSO

circleq(3), insque(3), list(3), slist(3), stailq(3), tailq(3)

COLOPHON

This page is part of release 5.10 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.