Windbg lm: what does “delayed” mean?

I am debugging a crash dump file for building .NET 2.0 in WinDbg.

When I type "lm" in WinDbg, I get a long list of loaded modules as follows:

723c0000 72950000 mscorwks   (deferred)  
.  
.

What does “delay” mean here? Do I need to worry about this?

+5
source share
1 answer

It just means that no symbols have been loaded for this module yet. So don’t worry about it.


See lm (list of loaded modules)

. . . . , .

, . . .

:

:

: , . . . .

+8

All Articles