April 2015
Intermediate to advanced
556 pages
17h 47m
English
While multithreading can be essential in certain applications, it also opens up an entirely new category of bugs that are notoriously difficult to fix: race conditions. It is for this reason that we suggest that you carefully weigh the benefits of multithreading against the significant costs.
Race conditions occur when code is modifying the same data in two or more threads. Consider the classic case of two threads incrementing a global variable (Figure 34.1). Here is the global integer variable:
var globalCount = 0
Figure 34.1 A classic race condition
Now imagine the two threads executing ...
Read now
Unlock full access