Depurando um deadlock com o comando windbg's! Clrstack

Ao emitir o comando clrstack, obtive a seguinte saída. É a pilha de chamada de um encadeamento de bloqueio que possui um impasse e resulta em um impasse. Esse é o seu objetivo exato? Tem outros fins (sem parâmetros). Onde posso obter mais informações?

!clrstack
OS Thread Id: 0x1b2c (6956)
ESP       EIP     
0012f370 7c90e514 [HelperMethodFrame: 0012f370] System.Threading.Thread.SleepInternal(Int32)
0012f3c4 79299275 System.Threading.Thread.Sleep(Int32)
0012f3c8 00e0030f testlock.LockTest.Test()
0012f420 00e00146 testlock.Program.Main(System.String[])
0012f69c 79e71b4c [GCFrame: 0012f69c] 

questionAnswers(3)

yourAnswerToTheQuestion