summaryrefslogtreecommitdiff
path: root/src/thread/thread_os2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/thread_os2.cpp')
-rw-r--r--src/thread/thread_os2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/thread_os2.cpp b/src/thread/thread_os2.cpp
index c6c7db7df..903ea0ebe 100644
--- a/src/thread/thread_os2.cpp
+++ b/src/thread/thread_os2.cpp
@@ -93,8 +93,8 @@ private:
*/
class ThreadMutex_OS2 : public ThreadMutex {
private:
- HMTX mutex;
- HEV event;
+ HMTX mutex; ///< The mutex.
+ HEV event; ///< Event for waiting.
public:
ThreadMutex_OS2()