mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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:
parent
43d1285dbd
commit
c8e2129a82
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue