7#include <cosmos/time/Clock.hxx>
15namespace cosmos::time {
29inline void sleep(std::chrono::nanoseconds ns) {
31 auto now = clock.
now();
36inline void sleep(std::chrono::microseconds us) {
37 return sleep(std::chrono::nanoseconds{us});
41inline void sleep(std::chrono::milliseconds ms) {
42 return sleep(std::chrono::nanoseconds{ms});
C++ wrapper around the POSIX clocks and related functions.
void now(TimeSpec< CLOCK > &ts) const
Retrieve the current value of the clock.
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
void sleep(std::chrono::nanoseconds ns)
Suspends execution of the calling thread for the given number of nanoseconds.