µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
Data Fields
uel_closure_t Struct Reference

Defines a closure, a tuple <function, context, destructor> More...

Collaboration diagram for uel_closure_t:
Collaboration graph
[legend]

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.
 

Detailed Description

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.


The documentation for this struct was generated from the following file: