From 1a5ebb44aa4ed3aecc84a8d6f0422d504db1ec44 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 10 Mar 2012 17:37:00 +0000 Subject: Fixed *nix threading issue; Thread objects now use variable names consistent with MCS convention; Fixed a few *nix threading cornercases git-svn-id: http://mc-server.googlecode.com/svn/trunk@392 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cAuthenticator.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/cAuthenticator.h') diff --git a/source/cAuthenticator.h b/source/cAuthenticator.h index 4f33ac036..ba75e8eb3 100644 --- a/source/cAuthenticator.h +++ b/source/cAuthenticator.h @@ -59,13 +59,13 @@ private: typedef std::deque cUserList; - cCriticalSection mCS; - cUserList mQueue; - cEvent mQueueNonempty; + cCriticalSection m_CS; + cUserList m_Queue; + cEvent m_QueueNonempty; - AString mServer; - AString mAddress; - bool mShouldAuthenticate; + AString m_Server; + AString m_Address; + bool m_ShouldAuthenticate; // cIsThread override: virtual void Execute(void) override; -- cgit v1.2.3