1800 INFORMATIONは多かれ少なかれ正しいですが、私が修正したかったいくつかの問題があります。
boost::shared_mutex _access;
void reader()
{
boost::shared_lock< boost::shared_mutex > lock(_access);
// do work here, without anyone having exclusive access
}
void conditional_writer()
{
boost::upgrade_lock< boost::shared_mutex > lock(_access);
// do work here, without anyone having exclusive access
if (something) {
boost::upgrade_to_unique_lock< boost::shared_mutex > uniqueLock(lock);
// do work here, but now you have exclusive access
}
// do more work here, without anyone having exclusive access
}
void unconditional_writer()
{
boost::unique_lock< boost::shared_mutex > lock(_access);
// do work here, with exclusive access
}
また、shared_lockとは異なり、upgrade_lockを一度に取得できるのは、upgrade_lockがアップグレードされていない場合でも(単一のスレッドのみです)。したがって、すべてのリーダーが条件付きライターである場合、別の解決策を見つける必要があります。