libcosmos
Linux C++ System Programming Library
|
C++ wrapper around the POSIX clocks and related functions. More...
#include <Clock.hxx>
Public Member Functions | |
void | now (TimeSpec< CLOCK > &ts) const |
Retrieve the current value of the clock. | |
TimeSpec< CLOCK > | now () const |
Returns the current value of the clock by value. | |
TimeSpec< CLOCK > | resolution () const |
Returns the resolution/precision of the represented clock. | |
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. | |
Static Public Member Functions | |
static ClockType | raw () |
C++ wrapper around the POSIX clocks and related functions.
This is a template to make different clock types incompatible with each other.
|
inline |
Returns the current value of the clock by value.
Definition at line 23 of file Clock.hxx.
void cosmos::Clock< CLOCK >::now | ( | TimeSpec< CLOCK > & | ts | ) | const |
|
inlinestatic |
TimeSpec< CLOCK > cosmos::Clock< CLOCK >::resolution | ( | ) | const |
Returns the resolution/precision of the represented clock.
The returned TimeSpec represents the smallest time unit that can be processed / detected by the clock. When calling setTime() then the used time value is truncated to a multiple of the resolution value returned from this function.
Definition at line 32 of file Clock.cxx.
void cosmos::Clock< CLOCK >::setTime | ( | const TimeSpec< CLOCK > | t | ) |
Changes the current time value of the represented clock.
Elevated permissions are necessary to change most clocks e.g. CAP_SYS_TIME to change the RealTimeClock. Not all clocks can be set. If this is the case then an ApiError with Errno::INVALID_ARG is thrown.
Definition at line 44 of file Clock.cxx.
void cosmos::Clock< CLOCK >::sleep | ( | const TimeSpec< CLOCK > | until | ) | const |
Suspend execution of the calling thread until the clock reaches the given time.
The given until
value is an absolute time in the future until which the execution of the calling thread is to be suspended. If until
is not in the future then this call returns immediately without entering a suspend state.
Depending of the libcosmos "automatic restart on interrupt" setting, this call can be interrupted by signals which will cause an ApiError with Errno::INTERRUPTED to be thrown.
Definition at line 53 of file Clock.cxx.