红联Linux门户
Linux帮助

Ubuntu上高精度时间的测量

发布时间:2016-12-23 09:26:04来源:linux网站作者:Charlie818
clock()函数的精确度是10毫秒(ms)
times()函数的精确度是10毫秒(ms)
gettimofday()函数的精确度是微秒(μs)
clock_gettime()函数的计量单位为十亿分之一,也就是纳秒(ns)
 
所以如果要测精度高的时间,用以下代码,可以达到微秒级。
 
struct timeval tstart,tend;
double timer;
gettimeofday(&tend,NULL);
gettimeofday(&tend,NULL);
timer=1000000*(tend.tv_sec-tstart.tv_sec)
+tend.tv_usec-tstart.tv_usec;
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27158.html