libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
time.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <chrono>
5
6// cosmos
7#include <cosmos/time/Clock.hxx>
8
15namespace cosmos::time {
16
18
29inline void sleep(std::chrono::nanoseconds ns) {
30 auto clock = MonotonicClock{};
31 auto now = clock.now();
32 clock.sleep(now + MonotonicTime{ns});
33}
34
36inline void sleep(std::chrono::microseconds us) {
37 return sleep(std::chrono::nanoseconds{us});
38}
39
41inline void sleep(std::chrono::milliseconds ms) {
42 return sleep(std::chrono::nanoseconds{ms});
43}
44
45} // end ns
C++ wrapper around the POSIX clocks and related functions.
Definition Clock.hxx:16
void now(TimeSpec< CLOCK > &ts) const
Retrieve the current value of the clock.
Definition Clock.cxx:23
A C++ wrapper around the POSIX struct timespec coupled to a specific CLOCK type.
Definition types.hxx:57
void sleep(std::chrono::nanoseconds ns)
Suspends execution of the calling thread for the given number of nanoseconds.
Definition time.hxx:29