- 论坛徽章:
- 0
|
原帖由 connet 于 2006-8-15 17:27 发表
好牛啊, 兄台用的什么体系结构的计算机啊?
通常 循环总会有判断条件,执行体, x86 下怎么可能几个嘀嗒啊
usleep 放心使用,usleep(1) 几乎感觉不到执行慢多少。 如果多线程,负载都很重, 每个都要 ...
- #include <fcntl.h>
- #include <stdio.h>
- #include <string.h>
- #include <time.h>
- int main(int argc, char * argv[])
- {
- int idel = 500;
- int count = 0;
- count = time( NULL );
- for( int i = 0; i < idel; i++ )
- {
- usleep( 10000 );
- }
- printf( "%i\n", time( NULL ) - count );
- count = time( NULL );
- for( int i = 0; i < idel; i++ )
- {
- usleep( 1 );
- }
- printf( "%i\n", time( NULL ) - count );
- }
复制代码
照你的说法,usleep( 1 )应该比usleep( 10000 )快好几个数量级了,你自己试试看看,usleep( 1 ) 跟 usleep( 10000 )实际耗时是一样的,说明什么?说明usleep( 1 )妄想休眠1微秒,可是系统精度达不到 |
|