.Net应用程序中的本机线程

时间:2010-08-23 11:45:28

标签: c# debugging

当我在WinDbg中发出〜* e!clrstack命令来识别控制台应用程序中的clr调用堆栈时,它列出了5个线程。其中3个是托管线程(主线程,我创建的线程,垃圾收集线程(我期望))。 2是本机线程 。我没有创建任何本机线程。

这些原生线程做什么?我在哪里可以获得更多信息?

〜* e!clrstack命令的输出列在下面

0:004> ~* e !clrstack
OS Thread Id: 0x1ab8 (0)
ESP       EIP     
0012f3c0 7c90e514 [HelperMethodFrame: 0012f3c0] System.Threading.Thread.SleepInternal(Int32)
0012f414 79299275 System.Threading.Thread.Sleep(Int32)
0012f418 00c602bf testlock.LockTest.Test()
0012f458 00c60131 testlock.Program.Main(System.String[])
0012f69c 79e71b4c [GCFrame: 0012f69c] 
OS Thread Id: 0x1008 (1)
Unable to walk the managed stack. The current thread is likely not a 
managed thread. You can run !threads to get a list of managed threads in
the process
OS Thread Id: 0x209c (2)
Failed to start stack walk: 80004005
OS Thread Id: 0x1490 (3)
ESP       EIP     
00d6f74c 7c90e514 [GCFrame: 00d6f74c] 
00d6f81c 7c90e514 [HelperMethodFrame_1OBJ: 00d6f81c] System.Threading.Monitor.Enter(System.Object)
00d6f874 00c602b3 testlock.LockTest.Test()
00d6f8b4 00c6022c testlock.Program+<>c__DisplayClass1.<Main>b__0()
00d6f8c0 792d6d66 System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
00d6f8cc 792e01ef System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
00d6f8e4 792d6ce4 System.Threading.ThreadHelper.ThreadStart()
00d6fb0c 79e71b4c [GCFrame: 00d6fb0c] 
OS Thread Id: 0x1cb8 (4)
Unable to walk the managed stack. The current thread is likely not a 
managed thread. You can run !threads to get a list of managed threads in
the process

2 个答案:

答案 0 :(得分:4)

当Windows运行您的应用程序时,它会设置几个非托管线程。这是完全正常的。

您可以从各种命令中获取非托管线程的堆栈跟踪,例如:

.kb100
!dumpstack

就个人而言,我喜欢!dumpstack的输出,它提供了组合的托管和非托管堆栈。

如果您只想查看托管线程,请尝试

!threads

Tess Ferrandez描述了在her blog调试时你会看到的一些普通的theads:

http://blogs.msdn.com/b/tess/archive/2005/12/20/things-to-ignore-when-debugging-an-asp-net-hang.aspx

答案 1 :(得分:0)

您可以使用以下命令获取有关其他线程的详细信息

  

!线程    - 特殊

以下是其中一些类型

  

IOCompletion,Gate,DbgHelper,GC,Finalizer,Timer,ADUnloadHelper

clrstack shows =&gt; ThreadpoolWorker