C++11 等价于 boost shared_mutex

2021-12-24 00:00:00 mutex c++ c++11 boost

是否有与 boost::shared_mutex 等效的 C++11.或者在 C++11 中处理多读取器/单写入器情况的另一种解决方案?

解决方案

我尝试过但未能将 shared_mutex 导入 C++11.它已被提议作为未来的标准.该提案位于此处.>

编辑:修订版 (N3659) 是接受 C++14.

这是一个实现:

http://howardhinnant.github.io/shared_mutex

http://howardhinnant.github.io/shared_mutex.cpp

Is there a C++11 equivalent for the boost::shared_mutex. Or another solution to handle a multiple reader / single writer situation in C++11?

解决方案

I tried but failed to get shared_mutex into C++11. It has been proposed for a future standard. The proposal is here.

Edit: A revised version (N3659) was accepted for C++14.

Here is an implementation:

http://howardhinnant.github.io/shared_mutex

http://howardhinnant.github.io/shared_mutex.cpp

相关文章