You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::shared_mutex was introduced in C++17 and is mostly a wrapper around pthread_rwlock on most platforms, but with RAII semantics preventing misuses.
Since we already wrap pthread_rwlock in the ReadWriteLock class that should hopefully not be too painful.
The text was updated successfully, but these errors were encountered:
Short description
std::shared_mutex
was introduced in C++17 and is mostly a wrapper aroundpthread_rwlock
on most platforms, but with RAII semantics preventing misuses.Since we already wrap
pthread_rwlock
in theReadWriteLock
class that should hopefully not be too painful.The text was updated successfully, but these errors were encountered: