util.poll: Return early if given zero timeout and no pending events

Should have been part of f33887f925e1 to ensure it won't skip processing
timers at all when very busy.
This commit is contained in:
Kim Alvefur 2023-11-21 17:43:46 +01:00
parent 43d1285dbd
commit c8e2129a82

View file

@ -411,6 +411,12 @@ static int Lwait(lua_State *L) {
lua_Number timeout = luaL_checknumber(L, 2);
luaL_argcheck(L, timeout >= 0, 1, "positive number expected");
if(timeout == 0.0) {
lua_pushnil(L);
lua_pushstring(L, "timeout");
return 2;
}
#ifdef USE_EPOLL
ret = epoll_wait(state->epoll_fd, state->events, MAX_EVENTS, timeout * 1000);
#endif