I often find these terms being used in context of concurrent programming . Are they the same thing or different ?
|
According to Wikipedia, the term "race condition" has been in use since the days of the first electronic logic gates. In the context of Java, a race condition can pertain to any resource, such as a file, network connection, a thread from a thread pool, etc. The term "data race" is best reserved for its specific meaning defined by the JLS. The most interesting case is a race condition that is very similar to a data race, but still isn't one, like in this simple example:
Since |
||||
|
|
|
To me data races is a subset of all race conditions. Data-races happen when two or more threads access the same memory without proper locking which can lead to unexpected values (if you have at least one thread doing writes). The Race condition term in general could also refer to e.g. threads that deadlock occasionally due to races in thread scheduling (and inproper use of locking mechanisms). |
|||
|
|
