mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Special handling of signal interrupts
This commit is contained in:
parent
afeb1f6f02
commit
2bb3772374
2 changed files with 6 additions and 1 deletions
|
@ -742,7 +742,7 @@ local function loop(once)
|
|||
log("debug", "Removing unknown fd %d", fd);
|
||||
poll:del(fd);
|
||||
end
|
||||
elseif r ~= "timeout" then
|
||||
elseif r ~= "timeout" and r ~= "signal" then
|
||||
log("debug", "epoll_wait error: %s[%d]", r, w);
|
||||
end
|
||||
until once or (quitting and next(fds) == nil);
|
||||
|
|
|
@ -316,6 +316,11 @@ int Lwait(lua_State *L) {
|
|||
lua_pushstring(L, "timeout");
|
||||
return 2;
|
||||
}
|
||||
else if(ret < 0 && errno == EINTR) {
|
||||
lua_pushnil(L);
|
||||
lua_pushstring(L, "signal");
|
||||
return 2;
|
||||
}
|
||||
else if(ret < 0) {
|
||||
ret = errno;
|
||||
lua_pushnil(L);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue