39 #ifndef AS_CRITICALSECTION_H 40 #define AS_CRITICALSECTION_H 42 #include "as_config.h" 48 #define DECLARECRITICALSECTION(x) 49 #define ENTERCRITICALSECTION(x) 50 #define LEAVECRITICALSECTION(x) 52 inline bool tryEnter() {
55 #define TRYENTERCRITICALSECTION(x) tryEnter() 57 #define DECLAREREADWRITELOCK(x) 58 #define ACQUIREEXCLUSIVE(x) 59 #define RELEASEEXCLUSIVE(x) 60 #define ACQUIRESHARED(x) 61 #define RELEASESHARED(x) 65 #define DECLARECRITICALSECTION(x) asCThreadCriticalSection x; 66 #define ENTERCRITICALSECTION(x) x.Enter() 67 #define LEAVECRITICALSECTION(x) x.Leave() 68 #define TRYENTERCRITICALSECTION(x) x.TryEnter() 70 #define DECLAREREADWRITELOCK(x) asCThreadReadWriteLock x; 71 #define ACQUIREEXCLUSIVE(x) x.AcquireExclusive() 72 #define RELEASEEXCLUSIVE(x) x.ReleaseExclusive() 73 #define ACQUIRESHARED(x) x.AcquireShared() 74 #define RELEASESHARED(x) x.ReleaseShared() 76 #ifdef AS_POSIX_THREADS 82 class asCThreadCriticalSection {
84 asCThreadCriticalSection();
85 ~asCThreadCriticalSection();
95 class asCThreadReadWriteLock {
97 asCThreadReadWriteLock();
98 ~asCThreadReadWriteLock();
100 void AcquireExclusive();
101 void ReleaseExclusive();
102 bool TryAcquireExclusive();
104 void AcquireShared();
105 void ReleaseShared();
106 bool TryAcquireShared();
109 pthread_rwlock_t lock;
112 #elif defined(AS_WINDOWS_THREADS) 118 #ifndef WIN32_LEAN_AND_MEAN 119 #define WIN32_LEAN_AND_MEAN 122 #define _WIN32_WINNT 0x0600 // We need this to get the declaration for Windows Phone compatible Ex functions 132 class asCThreadCriticalSection {
134 asCThreadCriticalSection();
135 ~asCThreadCriticalSection();
145 class asCThreadReadWriteLock {
147 asCThreadReadWriteLock();
148 ~asCThreadReadWriteLock();
150 void AcquireExclusive();
151 void ReleaseExclusive();
153 void AcquireShared();
154 void ReleaseShared();
172 CRITICAL_SECTION writeLock;
178 static const asUINT maxReaders = 10;