12ReadWriteLock::ReadWriteLock(
const string& name) {
14 #if defined(CPPTHREADS)
22 #if defined(CPPTHREADS)
30 #if defined(CPPTHREADS)
31 sharedMutex.lock_shared();
39 #if defined(CPPTHREADS)
48 #if defined(CPPTHREADS)
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
Implementation for read/write lock.
void writeLock()
Locks for writing / exclusive lock.
void unlock()
Unlocks this read write lock.
pthread_rwlock_t pReadWriteLock
~ReadWriteLock()
Destroys the read write lock.
void readLock()
Locks for reading / shared lock.