分析.net 4.0的gflags.exe创建的故障转储,但没有足够的信息

发布于 2024-11-24 06:26:13 字数 253 浏览 2 评论 0原文

用 c# 4.0 编写的 Windows 服务,设置 gflags.exe(Global Flags) 在进程崩溃时保存转储。

但是当我在 Windbg 中打开故障转储时,我得到了 0:00> 。我不擅长windbg,我记得Tess的博客说当打开故障转储时你应该看到发生异常的线程id,但我看到的是0:00>...并且!pe没有有用的结果。

使用 !dumpheap -stat,我只能看到很少的对象,那么我如何分析这个转储呢? 非常感谢您的帮助。

a windows service written in c# 4.0, setting gflags.exe(Global Flags) to save the dump when process crashing.

But when I open the crash dump in windbg, I got the 0:00> . I am not good at windbg, and I remembered Tess's blog said when opening a crash dump you should see the threads id which the exception occurs, but what I see is 0:00>... and !pe has no useful result.

using !dumpheap -stat, I could only see few objects, so how can I analysis this dump?
thanks a lot for any help.

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

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

发布评论

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

评论(2

2024-12-01 06:26:13

如果您使用 !dumpheap -stat 看到很少有对象,则该转储可能生成得太晚,或者生成的时间错误。

您可以尝试使用 Debug Diag 或 ADPlus 重新捕获转储(当然,在此之前您需要重置 GFlags 中的更改)。

http ://blogs.msdn.com/b/lexli/archive/2009/08/23/when-the-application-program-crashes-on-windows.aspx

If you see few objects using !dumpheap -stat, then it is likely that this dump was generated too late, or at a wrong time.

You may try to use Debug Diag or ADPlus to recapture the dump (of course you need to reset the changes in GFlags before doing that).

http://blogs.msdn.com/b/lexli/archive/2009/08/23/when-the-application-program-crashes-on-windows.aspx

在梵高的星空下 2024-12-01 06:26:13

~*e !pe 是否输出您感兴趣的异常?
漫长的道路是:

!threads
~#s, where # is the number of the thread which has an exception
!pe

Does ~*e !pe output an exception of your interest?
The long way is:

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