|
CX Framework
Cross-platform C utility framework
|
Data Structures | |
| struct | TRFifo |
| Strictly ordered FIFO resource for serialized task execution. More... | |
Macros | |
| #define | trfifoCreate() TRFifo_create() |
Typedefs | |
| typedef struct TRFifo | TRFifo |
| Strictly ordered FIFO resource for serialized task execution. | |
TRFifo provides strictly ordered FIFO (First In, First Out) serialization of task execution. Tasks are guaranteed to run in exactly the order they registered with the resource.
Characteristics:
When to use:
Example use case: Serializing writes to a file or database where order matters.
Linked list node for FIFO queue.
| #define trfifoCreate | ( | ) | TRFifo_create() |