mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
net.server_epoll: Log failure to hook signals
To make any such failures noticeable
This commit is contained in:
parent
3d2bad3d4b
commit
f1e07782ed
1 changed files with 6 additions and 1 deletions
|
@ -1151,7 +1151,12 @@ if have_signal and signal.signalfd then
|
|||
end
|
||||
|
||||
function hook_signal(signum, cb)
|
||||
local watch = watchfd(signal.signalfd(signum), dispatch);
|
||||
local sigfd = signal.signalfd(signum);
|
||||
if not sigfd then
|
||||
log("error", "Could not hook signal %d", signum);
|
||||
return nil, "failed";
|
||||
end
|
||||
local watch = watchfd(sigfd, dispatch);
|
||||
watch.listeners = { onsignal = cb };
|
||||
watch.close = nil; -- revert to default
|
||||
return watch;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue