uloop: add support for interval timers
authorJo-Philipp Wich <jo@mein.io>
Sat, 14 Oct 2023 22:17:36 +0000 (00:17 +0200)
committerFelix Fietkau <nbd@nbd.name>
Thu, 2 Nov 2023 16:49:55 +0000 (17:49 +0100)
commit82fa6480de7a85d0ced0701ab7c8825e31b90770
tree580124998f50d5745f26d71e777ee58a1bc5a87e
parent75a3b870cace1171faf57bd55e5a9a2f1564f757
uloop: add support for interval timers

So far, the only way to implement periodic interval timers was to use
one-shot uloop_timeout timers which are rearmed within their completion
callback immediately on expiration.

While simple, this approach is not very precise and interval lengths will
slowly drift over time, due to callback execution overhead, scheduling
granularity etc.

In order to make uloop provide stable and precise interval timer
capabilities, this commit introduces a new `uloop_interval` structure
along with the new related `uloop_interval_set()`, `uloop_interval_cancel()`
and `uloop_interval_remaining()` api functions.

Periodic timers are implemented using the timerfd facility an Linux and
kqueue EVFILT_TIMER events on macOS/BSD.

The Lua binding has been updated to include support for the new timer type
as well.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
examples/uloop-example.lua
lua/uloop.c
uloop-epoll.c
uloop-kqueue.c
uloop.c
uloop.h