TDME2 1.9.121
ReadWriteLock.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#if defined(CPPTHREADS)
7 #include <shared_mutex>
8 using std::shared_mutex;
9#else
10 #include <pthread.h>
11#endif
12
13#include <string>
14
15using std::string;
16
17/**
18 * Implementation for read/write lock
19 * @author Andreas Drewke
20 */
22public:
23 /**
24 * @brief Public constructor
25 * @param name name
26 */
27 ReadWriteLock(const string& name);
28
29 /**
30 * @brief Destroys the read write lock
31 */
33
34 /**
35 * @brief Locks for reading / shared lock
36 */
37 void readLock();
38
39 /**
40 * @brief Locks for writing / exclusive lock
41 */
42 void writeLock();
43
44 /**
45 * @brief Unlocks this read write lock
46 */
47 void unlock();
48private:
49 string name;
50 #if defined(CPPTHREADS)
51 shared_mutex sharedMutex;
52 #else
53 pthread_rwlock_t pReadWriteLock;
54 #endif
55};
Implementation for read/write lock.
Definition: ReadWriteLock.h:21
void writeLock()
Locks for writing / exclusive lock.
ReadWriteLock(const string &name)
Public constructor.
void unlock()
Unlocks this read write lock.
~ReadWriteLock()
Destroys the read write lock.
void readLock()
Locks for reading / shared lock.