aboutsummaryrefslogtreecommitdiff
path: root/backends/mutex/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/mutex/mutex.h')
-rw-r--r--backends/mutex/mutex.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/mutex/mutex.h b/backends/mutex/mutex.h
index d8647bae13..ddf27d5932 100644
--- a/backends/mutex/mutex.h
+++ b/backends/mutex/mutex.h
@@ -29,6 +29,10 @@
#include "common/system.h"
#include "common/noncopyable.h"
+/**
+ * Abstract class for mutex manager. Subclasses
+ * implement the real functionality.
+ */
class MutexManager : Common::NonCopyable {
public:
virtual ~MutexManager() {}
@@ -39,5 +43,4 @@ public:
virtual void deleteMutex(OSystem::MutexRef mutex) = 0;
};
-
#endif