Kernel: Remove get_unix_timestamp from SystemTimer

Kernel now uses the percise real_time() and time_since_boot()
This commit is contained in:
Bananymous
2023-08-09 08:57:50 +03:00
parent 6fcb191ca0
commit 96c0ad0d3d
6 changed files with 26 additions and 33 deletions

View File

@@ -25,10 +25,9 @@ namespace Kernel
virtual uint64_t ms_since_boot() const override;
virtual timespec time_since_boot() const override;
void sleep(uint64_t) const;
void sleep(uint64_t ms) const;
uint64_t get_unix_timestamp() const;
timespec get_real_time() const;
timespec real_time() const;
private:
SystemTimer() = default;