Tips for Debugging Threads in Native Code
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Tips for Debugging Threads in Native Code.
Here are some tips you can use when debugging threads in native code:
You can view the contents of the Thread Information Block by typing
@TIBin the Watch window or QuickWatch dialog box.You can view the last error code for the current thread by entering
@Errin the Watch window or QuickWatch dialog box.C Run-Time Libraries (CRT) functions can be useful for debugging a multithreaded application. For more information, see _malloc_dbg.
Show: