使用 IDebugControl::GetStackTrace 错误线程堆栈跟踪
我有一个崩溃应用程序的小型转储,我想在我自己的库中使用 DbgEng 来分析它。现在有人如何使用 IDebugControl::GetStackTrace 获取导致程序崩溃的线程的堆栈跟踪吗?
我很感激任何形式的帮助,
谢谢
I have a minidump of crashed application and I would like to analyse it using DbgEng in my own library. Does anyone now how can I get the stacktrace of the thread that caused the program crash using IDebugControl::GetStackTrace?
I appreciate any kind of help
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据故障转储的生成方式,它可能使用嵌入式上下文。使用
IDebugControl4
< /a> 界面,使您可以访问GetStoredEventInformation
和GetContextStackTrace
方法。如果GetStoredEventInformation
失败,您可以依靠GetStackTrace
方法。本文描述了该解决方案 http://blogs.msdn.com/b/joshpoley/archive/2008/11/10/minidumps-and-bad-stacks.aspx
Depending on how the crash dump was generated, it might be using embedded contexts. Use the
IDebugControl4
interface which gives you access to theGetStoredEventInformation
andGetContextStackTrace
methods. IfGetStoredEventInformation
fails, you can fall back on theGetStackTrace
method.The solution is described in this article http://blogs.msdn.com/b/joshpoley/archive/2008/11/10/minidumps-and-bad-stacks.aspx