|
libqueue 1.0.0
Queue in C
|
Queue instance. More...
#include <queue.h>
Data Fields | |
| u_int32_t | size |
| queue_node_t * | head |
| queue_node_t * | tail |
Queue instance.
Implemented as a singly linked list, such that elements get pushed behind the tail, while elements get popped from head.
| queue_node_t* queue_t::head |
First node in the linked list
| u_int32_t queue_t::size |
Size of the queue
| queue_node_t* queue_t::tail |
Last node in the linked list