当前位置: 技术问答>linux和unix
struct timeval结构体的作用是什么呢?谢谢
来源: 互联网 发布时间:2016-05-13
本文导语: 什么意思呢? struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 250000; | struct timeval tv; tv.tv_sec = 0; // 秒 tv.tv_usec = 250000; // 微秒 在linux中,通常在需要超时时间...
什么意思呢?
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 250000;
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 250000;
|
struct timeval tv;
tv.tv_sec = 0; // 秒
tv.tv_usec = 250000; // 微秒
在linux中,通常在需要超时时间的地方,比如select()的超时时间就是用它。
另外,gettimeofday()等函数也会用到它!
用man自己看看吧
tv.tv_sec = 0; // 秒
tv.tv_usec = 250000; // 微秒
在linux中,通常在需要超时时间的地方,比如select()的超时时间就是用它。
另外,gettimeofday()等函数也会用到它!
用man自己看看吧