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
This commit is contained in:
@@ -59,13 +59,13 @@ private:
|
||||
|
||||
typedef std::deque<cUser> 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;
|
||||
|
||||
Reference in New Issue
Block a user