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

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