1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:27:45 +00:00

AK: Remove Duration::now_monotonic

This is the end of absolute time support in Duration. :^)
This commit is contained in:
kleines Filmröllchen 2023-03-17 19:51:33 +01:00 committed by Jelle Raaijmakers
parent fc5cab5c21
commit 3c212c8535
2 changed files with 0 additions and 15 deletions

View file

@ -217,16 +217,6 @@ static Duration now_time_from_clock(clockid_t clock_id)
}
}
Duration Duration::now_monotonic()
{
return now_time_from_clock(CLOCK_MONOTONIC);
}
Duration Duration::now_monotonic_coarse()
{
return now_time_from_clock(CLOCK_MONOTONIC_COARSE);
}
MonotonicTime MonotonicTime::now()
{
return MonotonicTime { now_time_from_clock(CLOCK_MONOTONIC) };