1800 情報はほぼ正しいですが、修正したい問題がいくつかあります。
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 とは異なり、一度に 1 つのスレッドしか upgrade_lock を取得できないことにも注意してください。したがって、すべてのリーダーが条件付きライターである場合は、別の解決策を見つける必要があります。