]> Sergey Matveev's repositories - public-inbox.git/commit
ds: flatten + reuse @events, epoll_wait style fixes
authorEric Wong <e@80x24.org>
Sun, 27 Dec 2020 02:53:07 +0000 (02:53 +0000)
committerEric Wong <e@80x24.org>
Mon, 28 Dec 2020 23:19:50 +0000 (23:19 +0000)
commit0f461dcd3317f44670e2fc50346f87ff41e80127
tree816e7f83431804824ee09d1571546aeb070350c3
parenta7794134700c855a7a4fc030720ee8901b38a5f0
ds: flatten + reuse @events, epoll_wait style fixes

Consistently returning the equivalent of pollfd.revents in a
portable manner was never worth the effort for us, as we use the
same ->event_step callback regardless of POLLIN/POLLOUT/POLLHUP.

Being a Perl, @events knows it size and we don't have to return
a maximum index for the caller to iterate on.

We can also avoid redundant integer coercion ("+0") since we
ensure everything is an IV in other places.

Finally, vec() is preferable to ("\0" x $size) for resizing
buffers because it only needs to write the extended portion
and not overwrite the entire buffer.
lib/PublicInbox/DS.pm
lib/PublicInbox/DSKQXS.pm
lib/PublicInbox/DSPoll.pm
lib/PublicInbox/Syscall.pm
t/ds-poll.t
t/epoll.t