event/Loop: move call to FlushClockCaches()
This commit is contained in:
parent
db21e20c99
commit
ac7bf12743
|
@ -296,7 +296,7 @@ EventLoop::Run() noexcept
|
|||
};
|
||||
#endif
|
||||
|
||||
steady_clock_cache.flush();
|
||||
FlushClockCaches();
|
||||
|
||||
do {
|
||||
again = false;
|
||||
|
@ -341,7 +341,7 @@ EventLoop::Run() noexcept
|
|||
|
||||
Wait(timeout);
|
||||
|
||||
steady_clock_cache.flush();
|
||||
FlushClockCaches();
|
||||
|
||||
#ifdef HAVE_THREADED_EVENT_LOOP
|
||||
{
|
||||
|
|
|
@ -182,6 +182,10 @@ public:
|
|||
return steady_clock_cache.now();
|
||||
}
|
||||
|
||||
void FlushClockCaches() noexcept {
|
||||
steady_clock_cache.flush();
|
||||
}
|
||||
|
||||
#ifdef HAVE_URING
|
||||
[[gnu::pure]]
|
||||
Uring::Queue *GetUring() noexcept;
|
||||
|
|
Loading…
Reference in New Issue