µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
Data Fields
uel_llist_t Struct Reference

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...

Collaboration diagram for uel_llist_t:
Collaboration graph
[legend]

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.
 

Detailed Description

Defines a linked list. If it is empty, head == tail == NULL. Pushing or popping from both the head or tail is always O(1).


The documentation for this struct was generated from the following file: