µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Go to the documentation of this file.
5 #ifndef UEL_SYSTEM_POOLS_H
6 #define UEL_SYSTEM_POOLS_H
22 typedef struct syspools uel_syspools_t;
26 #define UEL_SYSPOOLS_EVENT_POOL_SIZE (1<<UEL_SYSPOOLS_EVENT_POOL_SIZE_LOG2N)
35 #define UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE (1<<UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE_LOG2N)
void * llist_node_pool_queue_buffer[UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE]
The budder used to store llist node pointers in the llist node pool queue.
Definition: system-pools.h:39
uel_objpool_t llist_node_pool
The llist node pool object. Contains all llist nodes used by the core.
Definition: system-pools.h:41
uel_event_t event_pool_buffer[UEL_SYSPOOLS_EVENT_POOL_SIZE]
The buffer used to store events in the event pool.
Definition: system-pools.h:28
Defines a simple implementation of linked lists and functions to manipulate it.
void * event_pool_queue_buffer[UEL_SYSPOOLS_EVENT_POOL_SIZE]
The buffer used to store event pointers in the event pool queue.
Definition: system-pools.h:30
void uel_syspools_init(uel_syspools_t *pools)
Initialise the system pools.
uel_llist_node_t * uel_syspools_acquire_llist_node(uel_syspools_t *pools)
Acquires a linked list node from the system pools.
Events are special messages passed around the core. They represent tasks to be run at some point by t...
Definition: event.h:58
bool uel_syspools_release_event(uel_syspools_t *pools, uel_event_t *event)
Releases an event to the system pools.
Defines object pools, arrays of pre-allocated objects for dynamic use.
#define UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE
Unrolls the UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE_LOG2N value to its power-of-two form.
Definition: system-pools.h:35
uel_event_t * uel_syspools_acquire_event(uel_syspools_t *pools)
Acquires an event from the system pools.
uel_objpool_t event_pool
The event pool object. Contains all the events used by the core.
Definition: system-pools.h:32
bool uel_syspools_release_llist_node(uel_syspools_t *pools, uel_llist_node_t *node)
Releases a linked list node to the system pools.
Defines events and methods to configure events.
#define UEL_SYSPOOLS_EVENT_POOL_SIZE
Unrolls the UEL_SYSPOOLS_EVENT_POOL_SIZE_LOG2N value to its power-of-two form.
Definition: system-pools.h:26
uel_llist_node_t llist_node_pool_buffer[UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE]
The buffer used to store llist nodes in the llist node pool.
Definition: system-pools.h:37
Central repository of system configuration. This is meant to be edited by the programmer as needed.
A container for the system pools.
Definition: system-pools.h:23