libcosmos
Linux C++ System Programming Library
|
#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) |
This header contains global time related functions.
Definition in file time.hxx.
|
inline |
Definition at line 36 of file time.hxx.
|
inline |
|
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.