net.server_epoll: Special handling of signal interrupts

This commit is contained in:
Kim Alvefur 2018-10-12 03:22:09 +02:00
parent afeb1f6f02
commit 2bb3772374
2 changed files with 6 additions and 1 deletions

View file

@ -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);

View file

@ -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);