/*********************************************************************************************************************************** Time Management ***********************************************************************************************************************************/ #ifndef COMMON_TIME_H #define COMMON_TIME_H #include "common/type.h" /*********************************************************************************************************************************** Time types ***********************************************************************************************************************************/ typedef uint64 TimeMSec; /*********************************************************************************************************************************** Constants describing number of sub-units in an interval ***********************************************************************************************************************************/ #define MSEC_PER_SEC ((TimeMSec)1000) /*********************************************************************************************************************************** Functions ***********************************************************************************************************************************/ void sleepMSec(TimeMSec sleepMSec); TimeMSec timeMSec(); #endif