Mario Luzeiro

Results 43 issues of Mario Luzeiro

On timer classes, should be possible to know how many timers are active? (for debug & statistics purposes)

enhancement

test_callback_timer_locked.cpp It tests timer in a way that is not possible to be used. ``` void callback2() { tick_list.push_back(ticks); p_controller->start(2); p_controller->start(1); } ``` callback2 calls start() (which has lock/unlock), while...

Current situation: The existent timers do not allow changes on timer (i.e: call timer functions, due design and mutex protection) while handling the expired callbacks, on tick(). Also it is...