Win95 / Win98 / WinME 上每个进程的 CPU 使用率
如何以编程方式测量 Windows 95、Windows 98 和 Windows ME 下每个进程(或更好的是每个线程)的 CPU 使用情况?
如果需要DDK,从哪里可以获得?
请注意Win9x 要求。 NT 上很容易。
编辑:我尝试安装 Win95/98 版本的 WMI,但 Win32_Process .KernelModeTime
和 Win32_Process.UserModeTime
返回 Null
(与 win9x 下的大多数 Win32_Process
属性一样)。
How can you programmatically measure per-process (or better, per-thread) CPU usage under windows 95, windows 98 and windows ME?
If it requires the DDK, where can you obtain that?
Please note the Win9x requirement. It's easy on NT.
EDIT: I tried installing the Win95/98 version of WMI, but Win32_Process.KernelModeTime
and Win32_Process.UserModeTime
return Null
(as do most Win32_Process
properties under win9x).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来Performance Data Helper应该可以安装在Win9x架构上。 使用这个你应该能够得到所花费的时间。 希望对您有所帮助或至少为您提供一些起点的链接:
[python-win32]监控CPU使用率
It seems Performance Data Helper should be possible to install on Win9x architecture. Using this you should be able to get the times spent. Link which hopefully will help you or at least give you some starting point:
[python-win32] Monitoring CPU Usage
如果需要,请查看编写性能监视器 Win98 DDK 可在此处获取。
Take a look at Writing a performance monitor and if you need it the Win98 DDK is available here.