summaryrefslogtreecommitdiff
path: root/src/utils/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/mutex.h')
-rw-r--r--src/utils/mutex.h33
1 files changed, 19 insertions, 14 deletions
diff --git a/src/utils/mutex.h b/src/utils/mutex.h
index fe560e354..3ea607029 100644
--- a/src/utils/mutex.h
+++ b/src/utils/mutex.h
@@ -33,18 +33,22 @@
*/
class Mutex
{
-public:
- Mutex();
- ~Mutex();
+ public:
+ Mutex();
- void lock();
- void unlock();
+ A_DELETE_COPY(Mutex);
-private:
- Mutex(const Mutex&); // prevent copying
- Mutex& operator=(const Mutex&);
+ ~Mutex();
- SDL_mutex *mMutex;
+ void lock();
+
+ void unlock();
+
+ private:
+// Mutex(const Mutex&); // prevent copying
+// Mutex& operator=(const Mutex&);
+
+ SDL_mutex *mMutex;
};
/**
@@ -52,12 +56,13 @@ private:
*/
class MutexLocker
{
-public:
- MutexLocker(Mutex *mutex);
- ~MutexLocker();
+ public:
+ MutexLocker(Mutex *mutex);
+
+ ~MutexLocker();
-private:
- Mutex *mMutex;
+ private:
+ Mutex *mMutex;
};