µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Go to the documentation of this file.
6 #ifndef UEL_CIRCULAR_QUEUE_H
7 #define UEL_CIRCULAR_QUEUE_H
45 void uel_cqueue_init(uel_cqueue_t *queue,
void **buffer, uintptr_t size_log2n);
uintptr_t uel_cqueue_count(uel_cqueue_t *queue)
Counts the number o elements in the queue.
uintptr_t size
The size of the queue. Must be a power of two.
Definition: circular-queue.h:27
void * uel_cqueue_pop(uel_cqueue_t *queue)
Pops an element from the queue.
void uel_cqueue_clear(uel_cqueue_t *queue, bool clear_buffer)
Empties a queue by resetting its tail and count values.
Defines a circular queue of void pointers.
Definition: circular-queue.h:23
uintptr_t count
Definition: circular-queue.h:35
void * uel_cqueue_peek_tail(uel_cqueue_t *queue)
Peeks the tail of the queue, where the oldest element is enqueued. This is the element that will be r...
void * uel_cqueue_peek_head(uel_cqueue_t *queue)
Peeks the head of the queue, where the newest element is enqueued. This is the element that was enque...
bool uel_cqueue_is_empty(uel_cqueue_t *queue)
Checks if the queue is empty. Use this before popping from the queue.
void uel_cqueue_init(uel_cqueue_t *queue, void **buffer, uintptr_t size_log2n)
Initialised a circular queue object.
uintptr_t tail
The position that indicates where the oldest enqueued element is.
Definition: circular-queue.h:32
bool uel_cqueue_is_full(uel_cqueue_t *queue)
Checks if the queue is full.
uintptr_t mask
Definition: circular-queue.h:30
void ** buffer
The buffer that will contain the enqueued values.
Definition: circular-queue.h:25
bool uel_cqueue_push(uel_cqueue_t *queue, void *element)
Pushes an element into the queue.