vote up 3 vote down star

I would like to see the threads currently active in my application while debugging it.

How can I do this using Visual Studio?

flag

68% accept rate

6 Answers

vote up 5 vote down check

Yes, go to Debug->Windows->Threads

link|flag
vote up 4 vote down

Debug | Windows | Threads

or

Ctrl-Alt-H

link|flag
vote up 2 vote down

If you are using VS 2008, check this screencast on VS 2008 multi-threading improvements..

link|flag
vote up 3 vote down

While RichS' answer is technically correct, the information displayed in that window is not as helpful if you have a number of thread in wait states or sleeping.

I would recommend you make sure you name your threads for better visibility in the Thread window. Use the Thread.Name property to assign a meaningful name to your thread. You'll be glad you did.

link|flag
vote up 0 vote down

Also, give your threads names when you create them, it makes it easier to identify them in the threads tool window in visual studio.

link|flag
vote up 0 vote down

I've been using Allinea's DDTLite plugin recently - drops into VS2008 (SP1) pretty well and gives a number of really really useful windows for managing multiple threads (stepping, breakpoints, ..) or even just seeing where threads are at the same time (a sort of tree like view of the stacks, it's really cool).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.