µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Defines a linked list. If it is empty, head == tail == NULL. Pushing or popping from both the head or tail is always O(1). More...
Data Fields | |
uel_llist_node_t * | head |
A pointer to the head of the list. Is NULL when the list is empty. | |
uel_llist_node_t * | tail |
A pointer to the tail of the list. Is NULL when the list is empty. | |
uintptr_t | count |
The count of enqueued nodes. | |
Defines a linked list. If it is empty, head == tail == NULL. Pushing or popping from both the head or tail is always O(1).