event/TimerEvent: rename to FineTimerEvent

... and make TimerEvent a type alias for FineTimerEvent (i.e. swap
names).
This commit is contained in:
Max Kellermann
2021-02-04 22:45:11 +01:00
committed by Max Kellermann
parent def962b6cb
commit 1b4fd74575
9 changed files with 160 additions and 143 deletions

View File

@@ -18,7 +18,6 @@
*/
#include "Loop.hxx"
#include "TimerEvent.hxx"
#include "DeferEvent.hxx"
#include "SocketEvent.hxx"
#include "IdleEvent.hxx"
@@ -144,7 +143,7 @@ EventLoop::AbandonFD(SocketEvent &event) noexcept
}
void
EventLoop::Insert(TimerEvent &t) noexcept
EventLoop::Insert(FineTimerEvent &t) noexcept
{
assert(IsInside());