diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-04 22:59:04 -0500 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2023-03-07 21:17:46 -0500 |
commit | 6f9918552c6a1d56a21fa544a7776cd1e5af7bc4 (patch) | |
tree | 4eebfe3a97560e36c2f2653a15633a24b8b17daf /src/common/steady_clock.h | |
parent | dcd13a7566340e80c042da7f626f9747ac71b8a7 (diff) |
steady_clock: Introduce a real time clock
Diffstat (limited to 'src/common/steady_clock.h')
-rw-r--r-- | src/common/steady_clock.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common/steady_clock.h b/src/common/steady_clock.h index 9497cf865..dbd0e2513 100644 --- a/src/common/steady_clock.h +++ b/src/common/steady_clock.h @@ -20,4 +20,15 @@ struct SteadyClock { [[nodiscard]] static time_point Now() noexcept; }; +struct RealTimeClock { + using rep = s64; + using period = std::nano; + using duration = std::chrono::nanoseconds; + using time_point = std::chrono::time_point<RealTimeClock>; + + static constexpr bool is_steady = false; + + [[nodiscard]] static time_point Now() noexcept; +}; + } // namespace Common |