当前位置:编程学习 > C/C++ >>

获取程序执行的“挂钟时间”,“用户时间”,“系统时间”

简单的程序可以通过命令实现

[plain]
# time ./test 
 
real    0m2.033s 
user    0m2.032s 
sys 0m0.000s 

# time ./test

real 0m2.033s
user 0m2.032s
sys 0m0.000s

不方便用time命令的可以使用系统函数实现

[cpp]
#include <sys/times.h>  
 
//用户获取用户时间,系统时间  
static struct tms tms_start; 
static struct tms tms_end; 
 
//用于获取挂钟时间  
static clock_t c_start; 
static clock_t c_end; 
 
void debug_times_start() 

    memset(&tms_start, 0, sizeof(struct tms)); 
    memset(&tms_end, 0, sizeof(struct tms)); 
 
    c_start = times(&tms_start); 

 
void debug_times_end() 

    c_end = times(&tms_end); 
 
    printf("clock time:%ld, user/system cpu time:%ld/%ld\r\n", 
            c_end - c_start, 
            tms_end.tms_utime - tms_start.tms_utime, 
            tms_end.tms_stime - tms_start.tms_stime); 

#include <sys/times.h>

//用户获取用户时间,系统时间
static struct tms tms_start;
static struct tms tms_end;

//用于获取挂钟时间
static clock_t c_start;
static clock_t c_end;

void debug_times_start()
{
 memset(&tms_start, 0, sizeof(struct tms));
 memset(&tms_end, 0, sizeof(struct tms));

 c_start = times(&tms_start);
}

void debug_times_end()
{
 c_end = times(&tms_end);

 printf("clock time:%ld, user/system cpu time:%ld/%ld\r\n",
   c_end - c_start,
   tms_end.tms_utime - tms_start.tms_utime,
   tms_end.tms_stime - tms_start.tms_stime);
}


 

补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,