Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I am debugging within Visual Studio, for some reason when debugging a certain thread, visual studio will just jump around randomly to different threads, I assume this is the default behavior.

How do I change to behavior so it's sits on the same thread?

Why would this behavior be default? It is very annoying.

share|improve this question
Can you give some more details? Are you debugging C# or C++ or something else? I don't think I've seen this exactly.. Usually it stays on one thread for me unless I've left a break point which another thread hits. – Alex Black Jul 1 '09 at 0:36

4 Answers

When you say, "when debugging a certain thread, visual studio will just jump around randomly to different threads", do you mean that as you step through code on a particular thread you may hit a breakpoint on a different thread?

If so, you can use the Thread window to 'freeze' threads other than the one you're interested in debugging:

From http://msdn.microsoft.com/en-us/library/w15yf86f.aspx:

From the Threads window, you can set the active thread. In addition, you can freeze or thaw the execution of each individual thread. Freezing prevents the execution of a thread. Thawing enables it to continue. Two vertical blue bars identify a frozen thread.

Support for this may depend on the version of Visual Studio you have (for example, I don't think the Express versions support the Thread window).

share|improve this answer

Generally, I freeze the other threads by right-click in the threads panel. I don't know if this is sane or not though.

share|improve this answer
+1 for the insanity check – andrecarlucci Aug 5 '12 at 23:21

It is default because the running the program in the debugger shouldn't change the results of the program, I assume.

When the program is running "live", it is constantly switching between threads, so if the debugger didn't do the same, the program would be behaving differently.

In any case, the only way I know of to prevent it is to open the Threads window, right click on all other threads than the current one, and select freeze. (Remember to thaw them again afterwards)

share|improve this answer

Or right click on the next line and select "Run to cursor"

share|improve this answer
I believe this will still result in jumping between threads, much like if you put a breakpoint on that line and then hit F5. It would be nice if it were possible to do "run to cursor (same thread)". – Tim Goodman May 17 at 6:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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