4#include <cosmos/dso_export.h>
5#include <cosmos/time/types.hxx>
6#include <cosmos/utils.hxx>
15template <ClockType CLOCK>
64using AtomicRealTimeClock = Clock<ClockType::ATOMIC_REALTIME>;
65using BootTimeClock = Clock<ClockType::BOOTTIME>;
66using CoarseMonotonicClock = Clock<ClockType::MONOTONIC_COARSE>;
67using CoarseRealTimeClock = Clock<ClockType::REALTIME_COARSE>;
68using MonotonicClock = Clock<ClockType::MONOTONIC>;
69using ProcessTimeClock = Clock<ClockType::PROCESS_CPUTIME>;
70using RawMonotonicClock = Clock<ClockType::MONOTONIC_RAW>;
71using RealTimeClock = Clock<ClockType::REALTIME>;
72using ThreadTimeClock = Clock<ClockType::THREAD_CPUTIME>;
74extern template class COSMOS_API Clock<ClockType::ATOMIC_REALTIME>;
75extern template class COSMOS_API Clock<ClockType::BOOTTIME>;
76extern template class COSMOS_API Clock<ClockType::MONOTONIC>;
77extern template class COSMOS_API Clock<ClockType::MONOTONIC_COARSE>;
78extern template class COSMOS_API Clock<ClockType::MONOTONIC_RAW>;
79extern template class COSMOS_API Clock<ClockType::PROCESS_CPUTIME>;
80extern template class COSMOS_API Clock<ClockType::REALTIME>;
81extern template class COSMOS_API Clock<ClockType::REALTIME_COARSE>;
82extern template class COSMOS_API Clock<ClockType::THREAD_CPUTIME>;
C++ wrapper around the POSIX clocks and related functions.
void setTime(const TimeSpec< CLOCK > t)
Changes the current time value of the represented clock.
void sleep(const TimeSpec< CLOCK > until) const
Suspend execution of the calling thread until the clock reaches the given time.
TimeSpec< CLOCK > resolution() const
Returns the resolution/precision of the represented clock.
TimeSpec< CLOCK > now() const
Returns the current value of the clock by value.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
ClockType
Available clock types for time operations.