µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Automatic pointers are pointers wrapped by information of where they were issued. More...
#include <automatic-pool.h>
Data Fields | |
void * | object |
A pointer to the wrapped object. | |
struct uel_autopool * | source |
The pool where the autoptr object was issued. | |
Automatic pointers are pointers wrapped by information of where they were issued.
Upon deallocation, an object wrapped by an autoptr is automatically returned to its original pool. Automatic pointers are meant to be pooled themselves.
The programmer can safely cast a uel_autoptr_t
to a void *
or a pointer to whatever type the wrapped object is.