31 if (::pthread_rwlock_init( &m_prwlock,
nullptr) != 0) {
32 cosmos_throw (
ApiError(
"pthread_rwlock_init()"));
37 const auto destroy_res = ::pthread_rwlock_destroy(&m_prwlock);
39 assert (!destroy_res);
43 void readlock()
const {
44 if (::pthread_rwlock_rdlock(&m_prwlock) != 0) {
45 cosmos_throw (
ApiError(
"pthread_rwlock_rdlock()"));
49 void writelock()
const {
50 if (::pthread_rwlock_wrlock(&m_prwlock) != 0) {
51 cosmos_throw (
ApiError(
"pthread_rwlock_wrlock()"));
57 if (::pthread_rwlock_unlock(&m_prwlock) != 0) {
58 cosmos_throw (
ApiError(
"pthread_rwlock_unlock()"));
65 mutable pthread_rwlock_t m_prwlock;