rid00z
rid00z

Reputation: 1616

How do I get Visual Studio to stay on one thread when debugging?

When I am debugging within Visual Studio, for some reason when debugging a certain thread, Visual Studio will just jump around to different threads.

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

Upvotes: 46

Views: 15301

Answers (5)

nop
nop

Reputation: 11

Yes, only way is to freeze all but the thread you want to debug:

  • Open the Threads window by going to Debug > Windows > Threads.
  • In the Threads window, right-click on the threads you want to freeze and select Freeze. This will prevent the debugger from switching to those threads.

However they did not think about the fact that, if you let the only thread you are debugging to end, the debugger will have no thread to switch to and the whole debug session will be locked as you will not be able to thaw any of the other threads.

Upvotes: 1

legends2k
legends2k

Reputation: 33004

All the answers here talk about freezing the threads, but it gets cumbersome when there're lots of them, and you don't know which one to freeze. I found an easier trick.

When a breakpoint is hit by a thread i, and say j, k, etc. are going to hit the same in some time, then disable the breakpoint temporarily and start debugging thread i. I see that the debugger doesn't jump on to the other threads since for those threads there's no breakpoint to break into. Enable the breakpoint when you're done debugging.

Upvotes: 13

Stack Overflow is garbage
Stack Overflow is garbage

Reputation: 248269

It is the default because 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)

Upvotes: 7

Michael Burr
Michael Burr

Reputation: 340506

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

Upvotes: 31

spender
spender

Reputation: 120538

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

Upvotes: 4

Related Questions