µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Go to the documentation of this file.
8 #ifndef UEL_AUTOMATIC_POOL_H
9 #define UEL_AUTOMATIC_POOL_H
74 uint8_t *object_buffer,
134 #define UEL_DECLARE_AUTOPOOL_BUFFERS(type, size_log2n, id) \
135 type id##_buffer[(1<<size_log2n)]; \
136 struct uel_autoptr id##_pool_buffer[1<<size_log2n]; \
137 void *id##_pool_queue_buffer[1<<size_log2n];
146 #define UEL_AUTOPOOL_BUFFERS(id) \
147 (uint8_t *)&id##_buffer, id##_pool_buffer, id##_pool_queue_buffer
159 #define UEL_AUTOPOOL_BUFFERS_IN(id, obj) \
160 (uint8_t *)&obj.id##_buffer, obj.id##_pool_buffer, \
161 obj.id##_pool_queue_buffer
173 #define UEL_AUTOPOOL_BUFFERS_AT(id, obj) \
174 (uint8_t *)&obj->id##_buffer, obj->id##_pool_buffer, \
175 obj->id##_pool_queue_buffer
Automatic pointers are pointers wrapped by information of where they were issued.
Definition: automatic-pool.h:26
uel_autoptr_t uel_autopool_alloc(uel_autopool_t *pool)
Allocates an object and wrap it in a automatic pointer.
uel_objpool_t autoptr_pool
The object pool that holds autopointers.
Definition: automatic-pool.h:52
void ** uel_autoptr_t
Aliases uel_autoptr_t to void ** so it can be cast to pointers to other types.
Definition: automatic-pool.h:34
void uel_autopool_init(uel_autopool_t *pool, size_t size_log2n, size_t item_size, uint8_t *object_buffer, struct uel_autoptr *autoptr_buffer, void **queue_buffer)
Initialises an automatic pool.
Defines closures, objects that bind functions to creating and calling contexts.
void * object
A pointer to the wrapped object.
Definition: automatic-pool.h:27
void uel_autoptr_dealloc(uel_autoptr_t autoptr)
Deallocates an automatic pointer.
Defines object pools, arrays of pre-allocated objects for dynamic use.
void uel_autopool_set_constructor(uel_autopool_t *pool, uel_closure_t constructor)
Sets the constructor closure of an autopool.
struct uel_autopool * source
The pool where the autoptr object was issued.
Definition: automatic-pool.h:28
void uel_autopool_set_destructor(uel_autopool_t *pool, uel_closure_t destructor)
Sets the destructor closure of an autopool.
uel_closure_t destructor
The destructor closure.
Definition: automatic-pool.h:54
Automatic pools are wrappers to object pools. They manage the acquisition and release cycle from obje...
Definition: automatic-pool.h:51
uel_closure_t constructor
The constructor closure.
Definition: automatic-pool.h:53
bool uel_autopool_is_empty(uel_autopool_t *pool)
Checks if a pool is depleted.