Micael
Micael

Reputation: 6970

How do I resolve this symbol in windbg?

I'm trying to determine the cause of a high cpu condition in windbg, and encounter lines like:

196fe804 69088346 00000000 00000000 00000000 System_ni+0x1bbf4b

When running '~* kb'

I've set it up so that it loads the symbols from MS' server, but for certain dll's it doesnt seem to work. Specifically:

System.ni
mscorlib.ni
System.Web.ni
System.Web.Mvc.ni
System.Web.Extensions.ni

(I'm not sure where the "ni" comes from)

Anyone with some good ideas?

Upvotes: 0

Views: 494

Answers (1)

seva titov
seva titov

Reputation: 11920

These are NGen'ed images.

In your Windbg type this: .loadby sos clr, followed by !ClrStack. That will show function names out of managed metadata.

Upvotes: 2

Related Questions