分类: LINUX
2010-01-10 22:02:40
struct timespec{
__time_t tv_sec; /*seconds 秒*/
long int tv_nsec; /*nanoseconds 纳秒*/
}
与struct 不同,将结构体内成员微秒变换成纳秒
struct timeval{
time_t tv_sec; /*seconds, 秒*/
suseconds tv_usec; /*microseconds, 微秒*/
}
timeval表示一个时间点,用秒、微秒来定义时间点。
int gettimeofday(struct timeval *tv, struct timezone *tz);