TDME2 1.9.121
ReadWriteLock.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
11
12ReadWriteLock::ReadWriteLock(const string& name) {
13 this->name = name;
14 #if defined(CPPTHREADS)
15 #else
16 auto result = pthread_rwlock_init(&pReadWriteLock, NULL);
17 PTHREAD_CHECK_ERROR(name, "Could not init read write lock", "pthread_rwlock_init");
18 #endif
19}
20
22 #if defined(CPPTHREADS)
23 #else
24 auto result = pthread_rwlock_destroy(&pReadWriteLock);
25 PTHREAD_CHECK_ERROR(name, "Could not destroy read write lock", "pthread_rwlock_destroy");
26 #endif
27}
28
30 #if defined(CPPTHREADS)
31 sharedMutex.lock_shared();
32 #else
33 auto result = pthread_rwlock_rdlock(&pReadWriteLock);
34 PTHREAD_CHECK_ERROR(name, "Could not issue read lock", "pthread_rwlock_rdlock");
35 #endif
36}
37
39 #if defined(CPPTHREADS)
40 sharedMutex.lock();
41 #else
42 auto result = pthread_rwlock_wrlock(&pReadWriteLock);
43 PTHREAD_CHECK_ERROR(name, "Could not issue write lock", "pthread_rwlock_wrlock");
44 #endif
45}
46
48 #if defined(CPPTHREADS)
49 sharedMutex.unlock();
50 #else
51 auto result = pthread_rwlock_unlock(&pReadWriteLock);
52 PTHREAD_CHECK_ERROR(name, "Could not unlock read write lock", "pthread_rwlock_unlock");
53 #endif
54}
#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION)
Implementation for read/write lock.
Definition: ReadWriteLock.h:21
void writeLock()
Locks for writing / exclusive lock.
void unlock()
Unlocks this read write lock.
~ReadWriteLock()
Destroys the read write lock.
void readLock()
Locks for reading / shared lock.