How to list call stack of all managed threads using WinDBG?

sarat picture sarat · Nov 16, 2011 · Viewed 34.4k times · Source

I have a dump created from a managed application. I am using SOS/SOSEX extentions to ease my dump analysis. I'd like to list down the call stack of all managed threads as we do ~*kb with native applications. How do we do that?

Answer

Justin picture Justin · Nov 16, 2011

Use the !EEStack command:

0:007> .load sos
0:007> !EEStack

See SOS.dll (SOS Debugging Extension)