.net - 风数据库流明 : what does "deferred" mean?

标签 .net windbg crash-dumps

我正在 WinDbg 中调试 .NET 2.0 程序集的故障转储文件。

当我在 WinDbg 中输入“lm”时,我会得到一长串已加载的模块,如下所示:

723c0000 72950000 mscorwks   (deferred)  
.  
.

这里的“延迟”是什么意思? 我需要担心这个吗?

最佳答案

这只是意味着该模块尚未加载任何符号。所以不用担心这个。

<小时/>

参见lm (List Loaded Modules)

The symbol type immediately follows the module name. This column is not labeled. For more information about the various status values, see Symbol Status Abbreviations. If you have loaded symbols, the symbol file name follows this column.

Deferred Symbol Loading

By default, symbol information is not actually loaded when the target modules are loaded. Instead, symbols are loaded by the debugger as they are needed. This is called deferred symbol loading or lazy symbol loading.

Symbol Status Abbreviations :

Abbreviation: deferred

Meaning: The module has been loaded, but the debugger has not attempted to load the symbols. Symbols will be loaded when needed. See Deferred Symbol Loading for details.

关于.net - 风数据库流明 : what does "deferred" mean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15069220/

相关文章:

c# - 文件访问问题

c# - 具有 O(n) 迭代,O(1) 包含和 O(1) 通过键获取的数据结构

c# - .NET 是否为 DispId 预定义了常量值?

asp.net - Windbg 和 Stack Overflow 异常 - 获得故障转储,但 Windbg 输出毫无意义

windows-7 - 在 Windows 7 上禁用应用程序故障转储

ios - 使用 QuincyKit 发送低内存崩溃报告?

c# - 在 C# 中生成运行时代码(结构、类)

powershell - 如何在交互式 Powershell 远程处理 session 中使用 cdb.exe

winapi - 使用windbg检查Win32 ReadFile lpBuffer参数

debugging - Windows(WER)能否在崩溃过程中同时生成小型转储和完整转储?