summaryrefslogtreecommitdiff
path: root/src/thread/thread_win32.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
committerrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
commit1a515e6344028854c855671c19f49d8f869eb18f (patch)
treee1bba97c1a8fd80f564729cc2d5fc2049110cb2a /src/thread/thread_win32.cpp
parentb27dd1dcd7375dae63724879eb0f56dd703e5312 (diff)
downloadopenttd-1a515e6344028854c855671c19f49d8f869eb18f.tar.xz
(svn r22405) -Document: some more "random-ish" tidbits
Diffstat (limited to 'src/thread/thread_win32.cpp')
-rw-r--r--src/thread/thread_win32.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/thread_win32.cpp b/src/thread/thread_win32.cpp
index a3b2d3734..1e7d0731e 100644
--- a/src/thread/thread_win32.cpp
+++ b/src/thread/thread_win32.cpp
@@ -106,8 +106,8 @@ private:
*/
class ThreadMutex_Win32 : public ThreadMutex {
private:
- CRITICAL_SECTION critical_section;
- HANDLE event;
+ CRITICAL_SECTION critical_section; ///< The critical section we would enter.
+ HANDLE event; ///< Event for signalling.
public:
ThreadMutex_Win32()