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