libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
time.hxx File Reference
#include <chrono>
#include <cosmos/time/Clock.hxx>

Go to the source code of this file.

Functions

void cosmos::time::sleep (std::chrono::nanoseconds ns)
 Suspends execution of the calling thread for the given number of nanoseconds.
 
void cosmos::time::sleep (std::chrono::microseconds us)
 
void cosmos::time::sleep (std::chrono::milliseconds ms)
 

Detailed Description

This header contains global time related functions.

Definition in file time.hxx.

Function Documentation

◆ sleep() [1/3]

void cosmos::time::sleep ( std::chrono::microseconds us)
inline
See also
sleep(std::chrono::nanoseconds)

Definition at line 36 of file time.hxx.

36 {
37 return sleep(std::chrono::nanoseconds{us});
38}
void sleep(std::chrono::nanoseconds ns)
Suspends execution of the calling thread for the given number of nanoseconds.
Definition time.hxx:29

◆ sleep() [2/3]

void cosmos::time::sleep ( std::chrono::milliseconds ms)
inline
See also
sleep(std::chrono::nanoseconds)

Definition at line 41 of file time.hxx.

41 {
42 return sleep(std::chrono::nanoseconds{ms});
43}

◆ sleep() [3/3]

void cosmos::time::sleep ( std::chrono::nanoseconds ns)
inline

Suspends execution of the calling thread for the given number of nanoseconds.

This takes a relative sleep duration. If the call is interrupted and automatic system call restarting is not enabled in libcosmos then continuing the sleep will be difficult, because it is unknown how much sleep duration is left.

Use ClockBase::sleep() directly using an absolute sleep time to avoid this situation.

This sleep() is based on the monotonic clock.

Definition at line 29 of file time.hxx.

29 {
30 auto clock = MonotonicClock{};
31 auto now = clock.now();
32 clock.sleep(now + MonotonicTime{ns});
33}