µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Defines a closure, a tuple <function, context, destructor> More...
Data Fields | |
uel_closure_function_t | function |
The function to be run when the closure is invoked. Must take two pointers ar arguments, one for the context and one for closure parameters. Must return a void pointer. | |
void * | context |
The context supplied to the closure durint creation. This context will be available during the function execution. | |
Defines a closure, a tuple <function, context, destructor>
A closure is a data structure that binds some function to a predetermined context. When the function is run, this context will be available to the function body.
When invoking the closure, additional parameters may be passed along and will also be available to the function body. The function can also return a value that will be passed back by the uel_closure_invoke
function.