event/Loop: rename Wait() to Poll()

Preparing to have another Wait() method wrapping Poll() and io_uring.
This commit is contained in:
Max Kellermann 2025-02-13 16:37:08 +01:00 committed by Max Kellermann
parent dda85e02bf
commit aff929dbd6
2 changed files with 4 additions and 4 deletions

@ -321,7 +321,7 @@ ExportTimeoutKernelTimespec(Event::Duration timeout, struct __kernel_timespec &b
#endif
inline bool
EventLoop::Wait(Event::Duration timeout) noexcept
EventLoop::Poll(Event::Duration timeout) noexcept
{
const auto poll_result =
poll_backend.ReadEvents(ExportTimeoutMS(timeout));
@ -434,11 +434,11 @@ EventLoop::Run() noexcept
if (epoll_ready) {
/* invoke epoll_wait() */
epoll_ready = Wait(Event::Duration{0});
epoll_ready = Poll(Event::Duration{0});
}
} else
#endif
Wait(timeout);
Poll(timeout);
idle.splice(std::next(idle.begin()), next);

@ -326,7 +326,7 @@ private:
*
* @return true if one or more sockets have become ready
*/
bool Wait(Event::Duration timeout) noexcept;
bool Poll(Event::Duration timeout) noexcept;
#ifdef HAVE_THREADED_EVENT_LOOP
void OnSocketReady(unsigned flags) noexcept;