mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.server_epoll: Avoid call to update socket watch flags when nothing changed
Should skip a syscall for each write when using epoll.
This commit is contained in:
parent
da38e2af42
commit
07d2f9f2e8
1 changed files with 3 additions and 0 deletions
|
@ -400,6 +400,9 @@ function interface:set(r, w)
|
|||
end
|
||||
if r == nil then r = self._wantread; end
|
||||
if w == nil then w = self._wantwrite; end
|
||||
if r == self._wantread and w == self._wantwrite then
|
||||
return true
|
||||
end
|
||||
local ok, err, errno = poll:set(fd, r, w);
|
||||
if not ok then
|
||||
self:debug("Could not update poller state: %s(%d)", err, errno);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue