5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/private/cosmos.hxx>
7#include <cosmos/time/Clock.hxx>
8#include <cosmos/utils.hxx>
14static_assert(
sizeof(RealTime) ==
sizeof(
struct timespec));
15static_assert(
sizeof(MonotonicTime) ==
sizeof(
struct timespec));
19static_assert(std::is_trivial<RealTime>::value ==
true);
22template <ClockType CLOCK>
24 auto res = clock_gettime(to_integral(CLOCK), &ts);
27 cosmos_throw (
ApiError(
"clock_gettime()"));
31template <ClockType CLOCK>
34 auto res = clock_getres(to_integral(CLOCK), &ret);
37 cosmos_throw (
ApiError(
"clock_getres()"));
43template <ClockType CLOCK>
45 auto res = clock_settime(to_integral(CLOCK), &t);
48 cosmos_throw (
ApiError(
"clock_settime()"));
52template <ClockType CLOCK>
55 auto res = clock_nanosleep(
62 const auto err =
Errno{res};
66 case Errno::NO_ERROR:
return;
67 case Errno::INTERRUPTED: {
68 if (auto_restart_syscalls) {
75 cosmos_throw (
ApiError(
"clock_nanosleep()", err));
Specialized exception type used when system APIs fail.
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.
Errno
Strong enum type representing errno error constants.