December 2013
Intermediate to advanced
352 pages
9h 22m
English
CHAPTER 13
![]()
Debugging Async with Visual Studio
Debugging multithreaded applications is often nontrivial. This is because they have multiple threads of execution running asynchronously and, to some degree, independently. These threads can sometimes interact in unexpected ways, causing your code to malfunction. However, exactly when the threads execute depends on the Windows thread scheduler. It is therefore possible that one instance of a program will run perfectly fine whereas another will crash—and the only thing that is different is how and when the different threads were scheduled.
Not only is identifying bugs harder with multithreaded applications, ...
Read now
Unlock full access