Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Thread window is empty

I am debugging console application, it has several threads running. Then why Thread Window is empty in VS 2010? I do not see any thread listed here, even main thread is not here. Do I need to enable something?

like image 897
Tomas Avatar asked Sep 26 '11 11:09

Tomas


People also ask

How do I open a thread window?

To display the Threads window in break mode or run mode While Visual Studio is in debug mode, select the Debug menu, point to Windows, and then select Threads.

What is thread in Visual Studio?

In visual basic, the thread is a basic unit of execution within the process and it is responsible for executing the application logic. By default, every application or program will carry one thread to execute the application logic and that thread is called the Main thread.

Is Visual Studio multithreaded?

Visual Studio provides different tools for use in debugging multithreaded apps. For threads, the primary tools for debugging threads are the Threads window, thread markers in source windows, the Parallel Stacks window, the Parallel Watch window, and the Debug Location toolbar.


1 Answers

Seen in HansPassant's comment above: This is normal, please try to set a breakpoint or utilize Debug + Break All.

like image 178
Impurity Avatar answered Sep 21 '22 17:09

Impurity