Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().

This only has second accuracy right now, I'll work out subseconds later.
This commit is contained in:
Andreas Kling 2018-10-25 17:29:49 +02:00
commit dc6f57f19c
Notes: sideshowbarker 2024-07-19 18:38:42 +09:00
20 changed files with 188 additions and 8 deletions

12
Kernel/RTC.h Normal file
View file

@ -0,0 +1,12 @@
#pragma once
#include "types.h"
namespace RTC {
void initialize();
time_t now();
time_t bootTime();
}