阅读:795回复:2
请问用ds编写驱动,有什么延迟的函数,大家看看我自己写的这个延迟函数
VOID UuuDevice::Delay(int k)
{ int j=0; for(int i=0;i<k;i++) { j=j+1; } } 但是就是不知道他能延迟多长时间,我的电脑是850M的,那位大虾帮我算算啊, 比如Delay(1000)是多长时间?给个数量级就可以了,谢谢~~ |
|
|
沙发#
发布于:2004-09-04 15:43
大家都不知道嘛?
:( 我可是给分的 :( |
|
|
板凳#
发布于:2004-09-04 23:09
KeDelayExecutionThread
The KeDelayExecutionThread routine puts the current thread into an alertable or nonalertable wait state for a given interval. KeStallExecutionProcessor The KeStallExecutionProcessor routine stalls the caller on the current processor for a specified time interval. 翻翻以前的帖子 |
|