1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

Kernel: Add TimeManagement::now_as_timeval()

Hide the implementation of time-of-day computation in TimeManagement.
This commit is contained in:
Andreas Kling 2020-05-16 11:33:24 +02:00
parent 2dc051c866
commit 2d35810e0a
Notes: sideshowbarker 2024-07-19 06:36:55 +09:00
3 changed files with 8 additions and 2 deletions

View file

@ -597,8 +597,7 @@ void Scheduler::timer_tick(const RegisterState& regs)
++g_uptime;
g_timeofday.tv_sec = TimeManagement::the().epoch_time();
g_timeofday.tv_usec = TimeManagement::the().ticks_this_second() * 1000;
g_timeofday = TimeManagement::now_as_timeval();
if (Process::current->is_profiling()) {
SmapDisabler disabler;