Kernel: Make kgettimeofday use AK::Time

This commit is contained in:
Ben Wiederhake 2021-02-28 02:18:48 +01:00 committed by Andreas Kling
commit 336303bda4
Notes: sideshowbarker 2024-07-18 21:47:33 +09:00
11 changed files with 28 additions and 26 deletions

View file

@ -381,9 +381,9 @@ int Process::alloc_fd(int first_candidate_fd)
return -EMFILE;
}
timeval kgettimeofday()
Time kgettimeofday()
{
return TimeManagement::now().to_timeval();
return TimeManagement::now();
}
siginfo_t Process::wait_info()