- 论坛徽章:
- 0
|
#include<stdio.h>
#include<sys/select.h>
#include<sys/time.h>
intmain(intargc, char**argv)
{
structtimeval tv;
struct timevaltv1;
struct timevaltv2;
int t;
while(1){
gettimeofday(&tv1,NULL);
tv.tv_sec= 0;
tv.tv_usec= 20 *1000;
select(0,0, 0,0,&tv);
gettimeofday(&tv2,NULL);
t =(tv2.tv_sec-tv1.tv_sec)* 1000 +
(tv2.tv_usec-tv1.tv_usec)/ 1000;
if (t> 30){
printf("selecttime %d\n",t);
}
}
} |
代码如上,大部分情况下,gettimeofday测出的select的等待时间为20 ~30ms
但是让我郁闷的是如果这时候我开个FTP传文件,
select的等待时间居然会飙到80ms左右,这误差也太大了吧?
我用TOP看了一下,没有CPU占用率特别高的程序在跑。
请问各位,这是为什么?
[ 本帖最后由 lijay 于 2007-7-3 12:37 编辑 ] |
|