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

View file

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