X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;h=0fe9e82087ff67d4c51d1d7bcde0f2a10d668138;hp=050d00f808a6d42f29e8cbf14744e935bad604d4;hb=b4806214e905752617691f851717033fd3f266c2;hpb=967785734be5c3fc6f75da122c2d93ebbb338271 diff --git a/source/core/mutex.h b/source/core/mutex.h index 050d00f..0fe9e82 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -35,21 +35,19 @@ public: }; /** -Locks the mutex for te lifetime of the object. +Locks the mutex for the lifetime of the object. */ class MutexLock { private: Mutex &mutex; + MutexLock(const MutexLock &); public: MutexLock(Mutex &m, bool l = true): mutex(m) { if(l) mutex.lock(); } ~MutexLock() { mutex.unlock(); } void lock() { mutex.lock(); } -private: - MutexLock(const MutexLock &); - MutexLock &operator=(const MutexLock &); }; /** @@ -59,41 +57,17 @@ exists, the mutex will stay locked. template class MutexPtr { -public: - MutexPtr(T *d, Mutex &m): mutex(new MutexLock(m)), data(d) { } - - T &operator*() const { return *data; } - T *operator->() const { return data; } - void clear() { mutex=0; data = 0; } private: RefPtr mutex; T *data; -}; -/*template -class MutexPtr: public RefCount -{ public: - MutexPtr(T *d, Mutex &m): mutex(m), data(d) { mutex.lock(); } - MutexPtr(const MutexPtr &p): RefCount(p), mutex(p.mutex), data(p.data) { } + MutexPtr(T *d, Mutex &m): mutex(new MutexLock(m)), data(d) { } + T &operator*() const { return *data; } T *operator->() const { return data; } - void clear() { decref(); data = 0; } - ~MutexPtr() { decref(); } -protected: - Mutex &mutex; - T *data; - - bool decref() - { - if(!RefCount::decref()) - { - mutex.unlock(); - return false; - } - return true; - } -};*/ + void clear() { mutex = 0; data = 0; } +}; }