- Mastering C++ Multithreading
- Maya Posch
- 42字
- 2021-07-15 17:34:01
Mutual exclusion implementations
Mutual exclusion is the principle which underlies thread-safe access of data within a multithreaded application. One can implement this both in hardware and software. The mutual exclusion (mutex) is the most elementary form of this functionality in most implementations.