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:
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.