X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fmutex.h;h=71fbdf0c6e5796423274049dc28a05dfba42cbb2;hb=ac360d8b680961af4a28601aa9c7fc47ab50caee;hp=18f9039227e1feb19e7860811e7487a2338dfd9a;hpb=e0b72720ebf599e67dd0fd793cdaf83be62db567;p=libs%2Fcore.git diff --git a/source/core/mutex.h b/source/core/mutex.h index 18f9039..71fbdf0 100644 --- a/source/core/mutex.h +++ b/source/core/mutex.h @@ -18,6 +18,8 @@ private: Private *priv; + Mutex(const Mutex &); + Mutex &operator=(const Mutex &); public: Mutex(); ~Mutex(); @@ -35,21 +37,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,15 +59,16 @@ exists, the mutex will stay locked. template class MutexPtr { +private: + RefPtr mutex; + T *data; + 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; + void clear() { mutex = 0; data = 0; } }; }