使用 IDebugControl::GetStackTrace 错误线程堆栈跟踪

发布于 2024-12-09 02:28:48 字数 135 浏览 1 评论 0原文

我有一个崩溃应用程序的小型转储,我想在我自己的库中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放血 2024-12-16 02:28:48

根据故障转储的生成方式,它可能使用嵌入式上下文。使用 IDebugControl4< /a> 界面,使您可以访问 GetStoredEventInformationGetContextStackTrace 方法。如果 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 the GetStoredEventInformation and GetContextStackTrace methods. If GetStoredEventInformation fails, you can fall back on the GetStackTrace method.

The solution is described in this article http://blogs.msdn.com/b/joshpoley/archive/2008/11/10/minidumps-and-bad-stacks.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文