mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.signal: Fail signalfd() if unable to change signal mask
By aborting early, the failure should be brought to the attention somehow.
This commit is contained in:
parent
f1e07782ed
commit
36a9583069
1 changed files with 4 additions and 1 deletions
|
@ -384,7 +384,10 @@ static int l_signalfd(lua_State *L) {
|
|||
sigemptyset(&sfd->mask);
|
||||
sigaddset(&sfd->mask, luaL_checkinteger(L, 1));
|
||||
|
||||
sigprocmask(SIG_BLOCK, &sfd->mask, NULL); /* TODO check err */
|
||||
if (sigprocmask(SIG_BLOCK, &sfd->mask, NULL) != 0) {
|
||||
lua_pushnil(L);
|
||||
return 1;
|
||||
};
|
||||
|
||||
sfd->fd = signalfd(-1, &sfd->mask, SFD_NONBLOCK);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue