gettimeofday函数的简单使用及功能说明


gettimeofday函数的功能是引用系统定义的结构体struct timeval,来计算当前程序或者进程,也就是占有CPU的时间是多少,它可以精确到微秒级别。它是通过前后两次调用的时间差来确定所消耗的时间。

struct timeval的原型在#include头文件中定义

struct timeval {
               time_t      tv_sec;     /* seconds */
               suseconds_t tv_usec;    /* microseconds */
           };

 

#include
#include 
#include

int test(int num)
{
//这里用来表示你自己要运行的程序

	while(time--)
	{};
 
}

int main()
{
    //定义两个结构体,来记录开始和结束时间
        struct  timeval start;
        struct  timeval end;
        //记录两个时间差
        unsigned  long diff;

        //获取开始前的瞬间时间
        gettimeofday(&start,NULL);

        //运行自己的程序,消耗时间
        test(1000000);

        //获取程序运行结束那一刻的时间
        gettimeofday(&end,NULL);

        //计算开始和结束时间差
        diff = 1000000 * (end.tv_sec-start.tv_sec)+ end.tv_usec-start.tv_usec;
        printf("thedifference is %ld\n",diff);

        return 0;
}

运行结果:num=1000000时:doubleh@ubuntu:/mnt/hgfs/winshare/C_test$ ./a.out
thedifference is 2318

 

 

 

你可能感兴趣的:(Linux学习笔记)