Lines Matching full:queue
29 * @(#)queue.h 8.5 (Berkeley) 8/20/94
30 * $FreeBSD: src/sys/sys/queue.h,v 1.32.2.7 2002/04/17 14:21:02 des Exp $
52 * implementing a LIFO queue.
54 * A singly-linked tail queue is headed by a pair of pointers, one to the
59 * end of the list. Elements being removed from the head of the tail queue
61 * A singly-linked tail queue may only be traversed in the forward direction.
63 * and few or no removals or for implementing a FIFO queue.
72 * A tail queue is headed by a pair of pointers, one to the head of the
77 * the list. A tail queue may be traversed in either direction.
79 * A circle queue is headed by a pair of pointers, one to the head of the
84 * A circle queue may be traversed in either direction, but has a more
87 * For details on the use of these macros, see the queue(3) manual page.
173 * Singly-linked Tail queue declarations.
190 * Singly-linked Tail queue functions.
329 * Tail queue declarations.
347 * Tail queue functions.
420 * Circular queue declarations.
438 * Circular queue functions.