diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-08 23:09:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-08 23:09:49 +0300 |
commit | 4f948c82ea95c6b9fac307f455fe91851e27017a (patch) | |
tree | 4eaa6aecdd68e2da17433517212b92028bf565e0 /src/net/eathena/network.cpp | |
parent | 72e775bac71b2d4b5103a0e8a6f03875b1617321 (diff) | |
download | plus-4f948c82ea95c6b9fac307f455fe91851e27017a.tar.gz plus-4f948c82ea95c6b9fac307f455fe91851e27017a.tar.bz2 plus-4f948c82ea95c6b9fac307f455fe91851e27017a.tar.xz plus-4f948c82ea95c6b9fac307f455fe91851e27017a.zip |
split network mutexe into read and write mutexes.
Diffstat (limited to 'src/net/eathena/network.cpp')
-rw-r--r-- | src/net/eathena/network.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/network.cpp b/src/net/eathena/network.cpp index 4786d9ee7..481a945ba 100644 --- a/src/net/eathena/network.cpp +++ b/src/net/eathena/network.cpp @@ -162,7 +162,7 @@ void Network::dispatchMessages() { while (messageReady()) { - SDL_mutexP(mMutex); + SDL_mutexP(mMutexIn); const int msgId = readWord(0); int len = -1; if (msgId == SMSG_SERVER_VERSION_RESPONSE) @@ -183,7 +183,7 @@ void Network::dispatchMessages() len = readWord(2); MessageIn msg(mInBuffer, len); - SDL_mutexV(mMutex); + SDL_mutexV(mMutexIn); if (len == 0) { @@ -210,7 +210,7 @@ bool Network::messageReady() { int len = -1; - SDL_mutexP(mMutex); + SDL_mutexP(mMutexIn); if (mInSize >= 2) { const int msgId = readWord(0); @@ -226,7 +226,7 @@ bool Network::messageReady() } const bool ret = (mInSize >= static_cast<unsigned int>(len)); - SDL_mutexV(mMutex); + SDL_mutexV(mMutexIn); return ret; } |