Linux下clock_gettime函数详解

要包含这头文件<time.h>

且在编译链接时需加上 -lrt ;因为在librt中实现了clock_gettime函数。

---

struct timespec ts;

clock_gettime(CLOCK_MONOTONIC,ts);

printf("%d %d",ts.tv_sec, ts.tv_nsec);打印出来的时间跟 cat /proc/uptime第一个参数一样

/proc/uptime里面的两个数字分别表示: 
the uptime of the system (seconds), and the amount of time spent inidle process (seconds).

把第一个数读出来,那就是从系统启动至今的时间,单位是秒

 

Middleware对POSIX提供的标准计时器API进行封装,主要提供了两种类型的时钟的封装。一种是CLOCK_REALTIME,另一种是CLOCK_MONOTONIC。对与man手册的解释是:
CLOCK_REALTIME: Systemwide realtime clock. 系统范围内的实时时钟。
CLOCK_MONOTONIC:Represents monotonic time. Cannot be set.表示单调时间,不能被设置的。

手册中解释的比较笼统。我个人的理解是:
CLOCK_REALTIME:这种类型的时钟可以反映wall clocktime,用的是绝对时间,当系统的时钟源被改变,或者系统管理员重置了系统时间之后,这种类型的时钟可以
得到相应的调整,也就是说,系统时间影响这种类型的timer。
CLOCK_MONOTONIC:用的是相对时间,他的时间是通过jiffies值来计算的。该时钟不受系统时钟源的影响,只受jiffies值的影响。

建议使用:
CLOCK_MONOTONIC这种时钟更加稳定,不受系统时钟的影响。如果想反映wall clocktime,就使用CLOCK_REALTIME。

 

clock_gettime比gettimeofday更加精确


clock_gettime( )提供了纳秒的精确度,给程序计时可是不错哦; 

 

 

 



函数的原型如下:

int clock_gettime(clockid_t clk_id, struct timespect * tp);

clockid_t clk_id用于指定计时时钟的类型,对于我们Programmr以下三种比较常用:

CLOCK_REALTIME, a system-wide realtime clock.
CLOCK_PROCESS_CPUTIME_ID, high-resolution timer provided by the CPUfor each process.
CLOCK_THREAD_CPUTIME_ID, high-resolution timer provided by the CPUfor each of the threads.
CLOCK_REALTIME,a system-wide realtime clock.
CLOCK_PROCESS_CPUTIME_ID, high-resolution timer providedby the CPU for each process.
CLOCK_THREAD_CPUTIME_ID, high-resolution timer provided bythe CPU for each of the threads.
struct timespect *tp用来存储当前的时间,其结构如下:
1 struct timespec {
2time_t tv_sec;
3long tv_nsec;
4};

呵呵,好啦!该讲的都刚清楚了,下面我们就上代码把;

转:Linux <wbr>下使用clock_gettime详解代码
1 #include < iostream >
2 #include < time.h >
3   using namespace std;
4
5 timespec diff(timespec start, timespec end);
6
7   int main()
8 {
9 timespec time1, time2;
10 int temp;
11 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, & time1);
12 for ( int i = 0 ;i < 242000000 ;i ++ )
13 temp += temp;
14 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, & time2);
15 cout << diff(time1,time2).tv_sec << " : " << diff(time1,time2).tv_nsec << endl;
16 return 0 ;
17 }
18
19 timespec diff(timespec start, timespec end)
20 {
21 timespec temp;
22 if ((end.tv_nsec - start.tv_nsec) < 0 ){
23 temp.tv_sec = end.tv_sec - start.tv_sec - 1 ;
24 temp.tv_nsec = 1000000000 + end.tv_nsec - start.tv_nsec;
25 } else {
26 temp.tv_sec = end.tv_sec - start.tv_sec;
27 temp.tv_nsec = end.tv_nsec - start.tv_nsec;
28 }
29 return temp;
30 }

你可能感兴趣的:(clock_gettime)