mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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);
|
log("debug", "Removing unknown fd %d", fd);
|
||||||
poll:del(fd);
|
poll:del(fd);
|
||||||
end
|
end
|
||||||
elseif r ~= "timeout" then
|
elseif r ~= "timeout" and r ~= "signal" then
|
||||||
log("debug", "epoll_wait error: %s[%d]", r, w);
|
log("debug", "epoll_wait error: %s[%d]", r, w);
|
||||||
end
|
end
|
||||||
until once or (quitting and next(fds) == nil);
|
until once or (quitting and next(fds) == nil);
|
||||||
|
|
|
@ -316,6 +316,11 @@ int Lwait(lua_State *L) {
|
||||||
lua_pushstring(L, "timeout");
|
lua_pushstring(L, "timeout");
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
else if(ret < 0 && errno == EINTR) {
|
||||||
|
lua_pushnil(L);
|
||||||
|
lua_pushstring(L, "signal");
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
else if(ret < 0) {
|
else if(ret < 0) {
|
||||||
ret = errno;
|
ret = errno;
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue