如何从CPU时间转为CPU利用率?
我试图识别我自己的应用程序中的失控线程,并在它们使计算机无法访问之前将其永久关闭。
但是,我只能获取线程的 CPU 时间,这是我使用的 API 的限制。有什么方法可以根据该数据评估 CPU 利用率吗?
我正在考虑将其与实时进行比较,如果很接近,则表明该线程对 CPU 的负载过多。你觉得这个启发式怎么样,它会起作用吗?
I'm trying to recognize a run away threads in my own application and close them for good before they render machine inaccessible.
However, I can only get CPU time for the thread, that is limitation of API I'm using. Is there any way to evaluate CPU utilization from that data?
I was thinking about comparing it to real time and if it is close - than that thread is loading CPU too much. What do you think about that heuristic, will it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CPU 时间除以实际时间即可得出 CPU 利用率。
CPU time divided by real time will give you CPU utilization.