linux系统编程-时间

程序需要关注两种时间:一种是真实时间(时间戳),第二种是进程使用CPU的时间总量

1、真实时间之间的转换

linux系统编程-时间
真实时间格式:

  • time_t 类型,表示Epoch以来的秒数
  • truct tm 分解时间,日期被分解为多个段,包括年,月,日,小时…
struct tm{
	int tm_sec;
	int tm_min;
	int tm_hour;
	int tm_mday;
	...
};
  • struct timeval,表示Epoch以来的时间,可精确到微秒
struct timeval{
	time_t tv_sec;
	suseconds_t tv_usec;
};
  • 固定格式字符串
  • 自定义字符串

2. 进程使用CPU的时间

进程使用CPU的时间包括用户模式下执行所花费的时间内核模式中执行所花费的时间

  • times系统调用
clock_t times(truct tms *buf);

返回结构体:

truct tms{
	clock_t tms_utime; //调用times的进程用户cpu时间
	clock_t tms_stime; //调用times的进程系统cpu时间
	clock_t tms_cutime; //用户cpu时间(包含该进程所有子进程)
	clock_t tms_cstime; //系统cpu时间(包含该进程所有子进程)
}

注意:times()的返回值的计量单位是 CLOCKS_PER_SEC,所以我们必须除以这个值来获得进程
所使用的 CPU 时间秒数,CLOCKS_PER_SEC通过**sysconf(_SC_CLK_TCK)**获取。

  • clock系统调用
clock_t clock(void);

clock调用的返回值描述了调用进程使用的总的 CPU 时间(包括用户和系统)。

上一篇:《信息安全系统设计与实现》学习笔记8


下一篇:tms js