4#include <cosmos/time/Clock.hxx>
9template <ClockType CLOCK>
30 return (m_clock.now() - m_mark).toMilliseconds();
33 std::chrono::milliseconds elapsed()
const {
34 return static_cast<std::chrono::milliseconds
>(m_clock.now() - m_mark);
48using AtomicRealTimeStopWatch = StopWatch<ClockType::ATOMIC_REALTIME>;
49using CoarseMonotonicStopWatch = StopWatch<ClockType::MONOTONIC_COARSE>;
50using CoarseRealTimeStopWatch = StopWatch<ClockType::REALTIME_COARSE>;
51using MonotonicStopWatch = StopWatch<ClockType::MONOTONIC>;
52using ProcessStopWatch = StopWatch<ClockType::PROCESS_CPUTIME>;
53using RawMonotonicStopWatch = StopWatch<ClockType::MONOTONIC_RAW>;
54using RealTimeStopWatch = StopWatch<ClockType::REALTIME>;
55using ThreadStopWatch = StopWatch<ClockType::THREAD_CPUTIME>;
C++ wrapper around the POSIX clocks and related functions.
Strong template type to wrap boolean values in a named type.
A type to measure elapsed time based on a given clock type.
size_t elapsedMs() const
Returns the elapsed milliseconds since the active mark.
StopWatch(const InitialMark do_mark=InitialMark{})
Construct and optionally set an initial mark().
void mark()
Set a new stop mark to compare against.
TimeSpec< CLOCK > currentMark() const
Returns the currently set mark (undefined if mark() was never called!).
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.