Ivan Grokhotkov 227f8daef3 esp_timer: do not allow deleting timers while callbacks are dispatched
timer_process_alarm function of esp_timer holds a spinlock for the
entire duration of its operation, except for the time when timer
callback function is called. It is possible that when
timer_process_alarm releases the spinlock, a higher priority task may
run and delete the timer. Then the execution will return to
timer_process_alarm, and this will either cause a crash, or undesired
execution of callback after the timer has been stopped or deleted.

To solve this problem, add a mutex which will prevent deletion of timers
while callbacks are being dispatched.
2019-01-03 07:14:53 +00:00
..
2018-08-20 16:49:20 +08:00
2018-12-18 15:58:47 +08:00
2018-07-09 14:36:06 +08:00
2018-10-21 15:11:45 +08:00
2016-08-17 23:08:22 +08:00
2018-10-08 19:55:13 +08:00