µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
Data Structures | Macros | Functions
system-pools.h File Reference

A container for the system's internal pools. More...

#include "uevloop/config.h"
#include "uevloop/utils/linked-list.h"
#include "uevloop/utils/object-pool.h"
#include "uevloop/system/event.h"
Include dependency graph for system-pools.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  uel_syspools_t
 A container for the system pools. More...
 

Macros

#define UEL_SYSPOOLS_EVENT_POOL_SIZE   (1<<UEL_SYSPOOLS_EVENT_POOL_SIZE_LOG2N)
 Unrolls the UEL_SYSPOOLS_EVENT_POOL_SIZE_LOG2N value to its power-of-two form.
 
#define UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE   (1<<UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE_LOG2N)
 Unrolls the UEL_SYSPOOLS_LLIST_NODE_POOL_SIZE_LOG2N value to its power-of-two form.
 

Functions

void uel_syspools_init (uel_syspools_t *pools)
 Initialise the system pools. More...
 
uel_event_t * uel_syspools_acquire_event (uel_syspools_t *pools)
 Acquires an event from the system pools. More...
 
uel_llist_node_t * uel_syspools_acquire_llist_node (uel_syspools_t *pools)
 Acquires a linked list node from the system pools. More...
 
bool uel_syspools_release_event (uel_syspools_t *pools, uel_event_t *event)
 Releases an event to the system pools. More...
 
bool uel_syspools_release_llist_node (uel_syspools_t *pools, uel_llist_node_t *node)
 Releases a linked list node to the system pools. More...
 

Detailed Description

A container for the system's internal pools.

Function Documentation

◆ uel_syspools_acquire_event()

uel_event_t* uel_syspools_acquire_event ( uel_syspools_t *  pools)

Acquires an event from the system pools.

Parameters
poolsThe uel_syspools_t instance
Returns
The acquired event

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

Parameters
poolsThe uel_syspools_t instance
Returns
The acquired linked list node

◆ uel_syspools_init()

void uel_syspools_init ( uel_syspools_t *  pools)

Initialise the system pools.

Parameters
poolsThe uel_syspools_t instance

◆ uel_syspools_release_event()

bool uel_syspools_release_event ( uel_syspools_t *  pools,
uel_event_t *  event 
)

Releases an event to the system pools.

Parameters
poolsThe uel_syspools_t instance
eventThe event to be released
Returns
Whether the event was successfully released

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

Parameters
poolsThe uel_syspools_t instance
nodeThe linked list node to be released
Returns
Wheter the linked list node was successfully released