Windbg 故障转储中的性能计数器
是否可以在 Windbg 中的本机 C++ 应用程序转储中看到线程性能计数器。
Is it possible to see thread performance counters in dump of native c++ application in windbg.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不可能看到计数器的值,因为它们不存储在 C++ 应用程序地址空间中。您可以从转储中提取的只是线程 ID、用户时间、内核时间和已用时间(请参阅 !runaway 命令)。
No, it not possible to see the values of the counters because are not stored in the c++ application address space. All you may extract from the dump are the thread ids, user time, kernel time and elapsed time (see the !runaway command).