uloop: add support for user defined signal handlers
authorJo-Philipp Wich <jo@mein.io>
Mon, 16 Oct 2023 14:35:28 +0000 (16:35 +0200)
committerFelix Fietkau <nbd@nbd.name>
Thu, 2 Nov 2023 16:56:45 +0000 (17:56 +0100)
commit13d9b04fb09d39a7204ba1e9cc9c8403fa22efa8
tree5a3882800b8507e2fbf08d4f6bc5a123cfc2b63b
parent82fa6480de7a85d0ced0701ab7c8825e31b90770
uloop: add support for user defined signal handlers

Reuse and extend the existing signal waker pipe mechanism to add user
defined signal handling functionality to uloop.

This commit introduces two new api functions `uloop_signal_add()` and
`uloop_signal_remove()` along with a new structure type `uloop_signal`
to allow adding and removing arbitrary signal handlers.

Registered signal handlers are maintained in a linked list and matched
by their signo member value which allows registering multiple handlers
for the same signal numbers.

Upon registering a new signal handler, the existing handler is saved
in the `uloop_signal` structure. When removing the user defined signal
handler, the original behavior is restored.

The Lua binding has been updated as well to support the new signal
handler mechanism.

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