7 #include <shared_mutex>
8 using std::shared_mutex;
50 #if defined(CPPTHREADS)
51 shared_mutex sharedMutex;
Implementation for read/write lock.
void writeLock()
Locks for writing / exclusive lock.
ReadWriteLock(const string &name)
Public constructor.
void unlock()
Unlocks this read write lock.
pthread_rwlock_t pReadWriteLock
~ReadWriteLock()
Destroys the read write lock.
void readLock()
Locks for reading / shared lock.