µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
system-pools.h
Go to the documentation of this file.
1 
5 #ifndef UEL_SYSTEM_POOLS_H
6 #define UEL_SYSTEM_POOLS_H
7 
9 #include <stdint.h>
11 
12 #include "uevloop/config.h"
15 #include "uevloop/system/event.h"
16 
22 typedef struct syspools uel_syspools_t;
23 struct syspools{
24 
26  #define UEL_SYSPOOLS_EVENT_POOL_SIZE (1<<UEL_SYSPOOLS_EVENT_POOL_SIZE_LOG2N)
32  uel_objpool_t event_pool;
33 
35  #define UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE (1<<UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE_LOG2N)
41  uel_objpool_t llist_node_pool;
42 };
43 
48 void uel_syspools_init(uel_syspools_t *pools);
49 
55 uel_event_t *uel_syspools_acquire_event(uel_syspools_t *pools);
56 
62 uel_llist_node_t *uel_syspools_acquire_llist_node(uel_syspools_t *pools);
63 
70 bool uel_syspools_release_event(uel_syspools_t *pools, uel_event_t *event);
71 
78 bool uel_syspools_release_llist_node(uel_syspools_t *pools, uel_llist_node_t *node);
79 
80 #endif /* UEL_SYSTEM_POOLS_H */
syspools::llist_node_pool_queue_buffer
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
syspools::llist_node_pool
uel_objpool_t llist_node_pool
The llist node pool object. Contains all llist nodes used by the core.
Definition: system-pools.h:41
syspools::event_pool_buffer
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
linked-list.h
Defines a simple implementation of linked lists and functions to manipulate it.
syspools::event_pool_queue_buffer
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
uel_syspools_init
void uel_syspools_init(uel_syspools_t *pools)
Initialise the system pools.
uel_syspools_acquire_llist_node
uel_llist_node_t * uel_syspools_acquire_llist_node(uel_syspools_t *pools)
Acquires a linked list node from the system pools.
event
Events are special messages passed around the core. They represent tasks to be run at some point by t...
Definition: event.h:58
uel_syspools_release_event
bool uel_syspools_release_event(uel_syspools_t *pools, uel_event_t *event)
Releases an event to the system pools.
object-pool.h
Defines object pools, arrays of pre-allocated objects for dynamic use.
UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE
#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_syspools_acquire_event
uel_event_t * uel_syspools_acquire_event(uel_syspools_t *pools)
Acquires an event from the system pools.
syspools::event_pool
uel_objpool_t event_pool
The event pool object. Contains all the events used by the core.
Definition: system-pools.h:32
uel_syspools_release_llist_node
bool uel_syspools_release_llist_node(uel_syspools_t *pools, uel_llist_node_t *node)
Releases a linked list node to the system pools.
event.h
Defines events and methods to configure events.
UEL_SYSPOOLS_EVENT_POOL_SIZE
#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
syspools::llist_node_pool_buffer
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
config.h
Central repository of system configuration. This is meant to be edited by the programmer as needed.
syspools
A container for the system pools.
Definition: system-pools.h:23