高性能Tick-Count服务,代码已上传

烽驿2009开源实时通信平台 源码获取:svn checkout http://fy2009.googlecode.com/svn/trunk/ fy2009-read-only

 

高性能时间服务入口函数(其实是个#define)

get_tick_count(user_clock_t *user_clock)语义上和Windows下的GetTickCount()相似--在Windows下实际上就是后者的别名。

get_tick_count_res(user_clock_t *user_clock)则返回前面函数的精度,在Windows下,永远返回1,即精度为1ms, 但在Linux下缺省返回10,即缺省精度为10ms。
get_tick_count()返回值乘以该精度值才是毫秒数。但值得注意的是在Linux下和Windows下get_tick_count的时间基准并不相同,Windows下从开机起算,Linux下则从user_clock_t服务初始化起算,因此,永远不要将get_tick_count返回值用作绝对TimeStamp

你可能感兴趣的:(原创开源,windows,user,linux,svn,平台)