使用 Breakpad 创建 CLR 转储

发布于 2024-11-29 14:52:20 字数 176 浏览 2 评论 0 原文

我正在使用 Google Breakpad 在 Windows 应用程序崩溃时生成故障转储。

我的应用程序将 C++ 本机代码与 C# CLR 代码混合在一起。 Breakpad 生成的转储不包含任何 CLR 信息。

是否可以使用 Breakpad 打开 CLR 转储?创建 CLR 转储需要哪些 API?

I am using Google Breakpad to generate crash dumps for my windows application when it crashes.

My application mixes C++ native code with C# CLR code.
The dumps that breakpad produces don't include any CLR information.

Is it possible to turn CLR dump on with Breakpad? What APIs are necessary to create CLR dumps?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

木有鱼丸 2024-12-06 14:52:20

“CLR 信息”是什么意思?我一直在使用 Breakpad 创建故障转储,并且可以使用 SOS 通过它们进行调试。

编辑:这是您需要执行的操作

.loadby sos clr   $ For .NET 4
~0s   $ Most crashes are on Thread 0
!pe   $ Print the exception
~1s   $ Let's take a look at Thread 1
!clrstack    $ Dump the managed stack

What do you mean by "CLR information"? I've been using Breakpad to create crash dumps and I can debug through them using SOS.

Edit: Here's what you need to do

.loadby sos clr   $ For .NET 4
~0s   $ Most crashes are on Thread 0
!pe   $ Print the exception
~1s   $ Let's take a look at Thread 1
!clrstack    $ Dump the managed stack
清晨说晚安 2024-12-06 14:52:20

正如我在 如何进行良好的故障转储中所解释的在.NET中,应满足以下条件:

  • 位数与进程的位数匹配
  • 需要包含所有内存的转储

后者对应于 href="https://msdn.microsoft.com/en-us/library/windows/desktop/ms680519(v=vs.85).aspx" rel="nofollow noreferrer">MINIDUMP_TYPE 枚举。

As I explained in How do I take a good crash dump in .NET, the following conditions should be met:

  • bitness matches the bitness of the process
  • a dump with all memory is needed

The latter corresponds to MiniDumpWithFullMemory of the MINIDUMP_TYPE enumeration.

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