Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<Not Available> and [Thread Destroyed] details in Thread window for Visual Studio 2010

I've been trying to debug some issues related with threads with one application. When I attach to the application I see a window like this one:

enter image description here

What is this thread with a name "[Thread Destroyed]"? The app code is not writing this name for sure.

What means that a Thread has the call stack not available. The "Acquisition Engine" thread is created inside the application and runs inside a loop until stopped. If the thread is stopped it exits the loop and it ends its life so it should be in the thread list. If it's there its because it hasn't exited the loop yet, so, again, what means that the callstack is not available?

Thanks in advance for your help, this one doesn't seem an easy one.

like image 391
Ignacio Soler Garcia Avatar asked Jun 13 '12 19:06

Ignacio Soler Garcia


1 Answers

[Thread Destroyed] means the Destructor has been called and the Thread no longer exists.

like image 85
IvoTops Avatar answered Nov 06 '22 23:11

IvoTops