|
#define | wmem_queue_count(X) wmem_list_count(X) |
|
#define | wmem_queue_peek(QUEUE) wmem_stack_peek(QUEUE) |
|
#define | wmem_queue_pop(QUEUE) wmem_stack_pop(QUEUE) |
|
#define | wmem_queue_push(QUEUE, DATA) wmem_list_append((QUEUE), (DATA)) |
|
#define | wmem_queue_new(ALLOCATOR) wmem_list_new(ALLOCATOR) |
|
#define | wmem_destroy_queue(QUEUE) wmem_destroy_list(QUEUE) |
|
A queue implementation on top of wmem.