Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No Thread Window Visual Studio 2010 Ultimate

Does anyone know what the problem here? There is no Thread Window in Debug menu. I am using full VS2010 (Ultimate SP1).

enter image description here

like image 269
Pavel Shchegolevatykh Avatar asked Jul 12 '12 17:07

Pavel Shchegolevatykh


People also ask

Where is the threads window visual studio?

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.

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.

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 single thread?

Presentation. This Visual Studio extension adds two shortcuts and toolbar buttons to allow developers to easily focus on single threads while debugging multi-threaded applications.


2 Answers

The Threads window option only becomes available while actually Debugging a process.

Choose "Start Debugging", then go back to the same menu, and Threads (as well as many other options) will appear.

like image 125
Reed Copsey Avatar answered Oct 11 '22 02:10

Reed Copsey


You need to be debugging in order to have the option show up in the menu:

enter image description here

like image 26
dlev Avatar answered Oct 11 '22 00:10

dlev