libcosmos
Linux C++ System Programming Library
|
Combined start time and repeat interval for a TimerFD setting. More...
#include <TimerFD.hxx>
Public Member Functions | |
TimerSpec () | |
Creates all zero time specs. | |
TimeSpec< CLOCK > & | initial () |
The initial tick time (relative or absolute) for the timer. | |
TimeSpec< CLOCK > & | interval () |
Timer tick repeat interval (relative) if any. | |
void | makeEqualInterval () |
Sets the interval to the same value as the initial time. | |
void | resetInterval () |
Sets the interval to zero, thus creating a single-tick timer. | |
Combined start time and repeat interval for a TimerFD setting.
Definition at line 64 of file TimerFD.hxx.
|
inline |
Creates all zero time specs.
Definition at line 68 of file TimerFD.hxx.
|
inline |
The initial tick time (relative or absolute) for the timer.
By default this specifies the relative tick time measured relative to the current clock value. If StartFlag::ABSTIME is specified then this is an absolute clock timestamp when the timer is to tick.
If this is all zero then the timer will be disarmed, no matter what value the interval() has.
Definition at line 83 of file TimerFD.hxx.
|
inline |
Timer tick repeat interval (relative) if any.
This is a relative time value that controls if and how quickly the timer will tick again after the initial tick occurred. If set to all zeroes then the timer will tick only once.
Definition at line 96 of file TimerFD.hxx.
|
inline |
Sets the interval to the same value as the initial time.
This only works if relative time is used for the initial TimeSpec. The interval TimeSpec will be set to the same value, causing the timer to tick in equal time spans relative to the current clock value.
Definition at line 107 of file TimerFD.hxx.
|
inline |
Sets the interval to zero, thus creating a single-tick timer.
Definition at line 112 of file TimerFD.hxx.