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?
| show 5 more comments |
|
I tried but failed to get Here is an implementation: http://home.roadrunner.com/~hinnant/mutexes/shared_mutex http://home.roadrunner.com/~hinnant/mutexes/shared_mutex.cpp |
||||
|
|
|
Simple... There isn't one. There is no standard C++ implementation of a readers-writer lock. But, you have a few options here.
Going with #1 and implementing your own is a scary undertaking and it is possible to riddle your code with race conditions if you don't get it right. There is a reference implemenation that may make the job a bit easier. If you want platform independent code or don't want to include any extra libraries in your code for something as simple as a reader-writer lock, you can throw #2 out the window. And, #3 has a couple caveats that most people don't realize: Using a reader-writer lock is often less performant, and has more difficult-to-understand code than an equivalent implementation using a simple mutex. This is because of the extra book-keeping that has to go on behind the scenes of a readers-writer lock implementation. I can only present you your options, really it is up to you to weigh the costs and benefits of each and pick which works best. |
|||
|
|
|
I believe you are looking for std::mutex or std::lock_guard in the thread support library. However the support isn't wide-spread yet. |
|||||
|
boost::shared_mutexwas rejected by the standardization committee. This might be relevant: permalink.gmane.org/gmane.comp.lib.boost.devel/211180 – Andy Prowl Jan 13 at 18:41vectoron the basis that sometimes adequeis better. I'm not saying the committee didn't have good reasons not to includeshared_mutex, just that this explanation isn't (I hope) all there is to it. Sometimes your locked ops are an order of magnitude slower than cache flush, so are not serialized by a rwlock. Doesn't make them "smelly". – Steve Jessop Jan 13 at 19:44