µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
Go to the documentation of this file.
6 #ifndef UEL_SCHEDULER_H
7 #define UEL_SCHEDULER_H
60 uel_scheduer_t *scheduler,
61 uel_syspools_t *pools,
62 uel_sysqueues_t *queues
74 uel_scheduer_t *scheduler,
75 uint16_t timeout_in_ms,
76 uel_closure_t closure,
92 uel_scheduer_t *scheduler,
93 uint16_t interval_in_ms,
95 uel_closure_t closure,
Defines a simple implementation of linked lists and functions to manipulate it.
uel_syspools_t * pools
Reference to the system's pools.
Definition: scheduler.h:46
Defines closures, objects that bind functions to creating and calling contexts.
void uel_sch_init(uel_scheduer_t *scheduler, uel_syspools_t *pools, uel_sysqueues_t *queues)
Initialises a scheduler object.
uel_llist_t pause_list
Paused timers linked list.
Definition: scheduler.h:44
The scheduler object.
Definition: scheduler.h:28
uel_sysqueues_t * queues
Reference to the system's queues.
Definition: scheduler.h:47
uel_event_t * uel_sch_run_later(uel_scheduer_t *scheduler, uint16_t timeout_in_ms, uel_closure_t closure, void *value)
Enqueues a closure for later execution.
volatile uint32_t timer
Internal timer. Must be updated via uel_sch_update_timer()
Definition: scheduler.h:50
uel_event_t * uel_sch_run_at_intervals(uel_scheduer_t *scheduler, uint16_t interval_in_ms, bool immediate, uel_closure_t closure, void *value)
Enqueues a closure for execution at intervals.
void uel_sch_update_timer(uel_scheduer_t *scheduler, uint32_t timer)
Updates the internal time counter.
uel_llist_t timer_list
Scheduled timers linked list.
Definition: scheduler.h:35
A container for the system's internal queues.
A container for the system's internal pools.
void uel_sch_manage_timers(uel_scheduer_t *scheduler)
Enqueue timers that are due to be processed in the event queue.