本文介绍了计算总CPU使用率的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在C ++中使用Windows平台。
$对于100纳秒的分辨率,b $ b解决方案
GetProcessTimes
如果您想要循环时间,请在Vista及更高版本中使用 QueryProcessCycleTime
。
What is best algorithm for calculating total CPU usage at a particular time during execution of a process.
I am working windows platform in C++.
解决方案
GetProcessTimes
for 100-nanosecond resolution. If you want cycle times, use QueryProcessCycleTime
in Vista and above.
这篇关于计算总CPU使用率的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!