Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道 boost 或 C++11 是否具有与tbb::queuing_mutexand相同的互斥锁tbb::spin_mutex?
tbb::queuing_mutex
tbb::spin_mutex
您可以在参考资料中找到支持的互斥锁。
C++11 有以下内容:
mutex
timed_mutex
recursive_mutex
recursive_timed_mutex
它们是自旋互斥锁还是排队互斥锁或其他东西取决于实现。