do you have any info about the subject? any problem with boost::shared_mutex in particular and with reader-writer mutexes at all?
reader-writer mutex can be misused, e.g. frequent writer locks reduces performance, even in comparison with simple mutex. but there're a lot of cases when many readers often require a shared resource that can be modified by writer really infrequently.
std::shared_mutex
is a simpler type, which is not part of C++14 but will be in C++17). - Jonathan Wakely