https://github.com/google/sanitizers/wiki

https://github.com/google/sanitizers/wiki/ThreadSanitizerCppManual

ThreadSanitizer (aka TSan) is a data race detector for C/C++. Data races are one of the most common and hardest to debug types of bugs in concurrent systems. A data race occurs when two threads access the same variable concurrently and at least one of the accesses is write. C++11standard officially bans data races as undefined behavior.

相关文章:

  • 2021-08-25
  • 2022-12-23
  • 2021-06-23
  • 2021-12-27
  • 2021-09-27
  • 2021-11-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
  • 2022-12-23
  • 2021-09-24
  • 2022-02-13
相关资源
相似解决方案