如何使用MFC统计Windows中每个进程的线程数
我想使用 MFC 构建一个类似任务管理器的应用程序。我已经成功枚举了当前运行的各个进程的 PID 和内存使用情况。
我的问题是我还想获取每个进程正在运行的线程数。
I want to build a task manager like application using MFC. I have already succeeded in enumerating the various processes running currently their PIDs and memory usage.
My problem is that i also want to obtain the number of threads each process has running.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 工具帮助库(win32)通过采取进程快照,然后步行
Thread32First/Next
。You can do that (and many more related things) with the Tool helper library (win32) by taking a process snapshot then walking
Thread32First/Next
.