Skip to content
Snippets Groups Projects
Commit de197c20 authored by g0dil's avatar g0dil
Browse files

Scheduler/ClockService: Add reltime() and reltime_type

parent 38cd3098
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,15 @@ prefix_ senf::ClockService::abstime_type senf::ClockService::abstime(clock_type
return instance().abstime_m(clock);
}
prefix_ senf::ClockService::reltime_type senf::ClockService::reltime(clock_type clock)
{
#ifdef BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG
return boost::posix_time::nanoseconds(clock);
#else
return boost::posix_time::microseconds((clock+500)/1000);
#endif
}
prefix_ senf::ClockService::clock_type senf::ClockService::clock(abstime_type time)
{
return instance().clock_m(time);
......
......@@ -86,6 +86,12 @@ namespace senf {
*/
typedef boost::posix_time::ptime abstime_type;
/** \brief Relative time data type
Boost.DateTime datatype used to represent time intervals
*/
typedef boost::posix_time::time_duration reltime_type;
///////////////////////////////////////////////////////////////////////////
static clock_type now(); ///< Return current clock value
......@@ -98,6 +104,12 @@ namespace senf {
monotonous, absolute time may be non-monotonous if
the system date/time is changed. */
static reltime_type reltime(clock_type clock); ///< Convert clock to relative time
/**< This member converts a clock value into a relative
Boost.DateTime time interval
\note The resolution of reltime_type might be smaller
than the clock_type resolution */
static clock_type clock(abstime_type time); ///< Convert absolute time to clock value
/**< This member converst an absolute time value into the
corresponding clock value.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment