diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-02 09:17:30 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-02 09:17:30 +0000 |
commit | 2f7037965c40f4d68784f51613d5e9b9a395fcaa (patch) | |
tree | f056ed5d9a3e9ed678cc1b43c84e79422307031a /cppe/src/TcpTransport/Transceiver.cpp | |
parent | windows fixes. (diff) | |
download | ice-2f7037965c40f4d68784f51613d5e9b9a395fcaa.tar.bz2 ice-2f7037965c40f4d68784f51613d5e9b9a395fcaa.tar.xz ice-2f7037965c40f4d68784f51613d5e9b9a395fcaa.zip |
- Fixes for Windows shutdown issue.
- Use a static mutex for the logger.
Diffstat (limited to 'cppe/src/TcpTransport/Transceiver.cpp')
-rw-r--r-- | cppe/src/TcpTransport/Transceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/TcpTransport/Transceiver.cpp b/cppe/src/TcpTransport/Transceiver.cpp index e464764b487..8ae2022c552 100644 --- a/cppe/src/TcpTransport/Transceiver.cpp +++ b/cppe/src/TcpTransport/Transceiver.cpp @@ -164,13 +164,13 @@ IceInternal::Transceiver::writeWithTimeout(Buffer& buf, int timeout) if(wouldBlock()) { doSelect(false, timeout > 0 ? timeout : _writeTimeout); - continue; + continue; } #endif if(connectionLost()) { - ConnectionLostException ex(__FILE__, __LINE__); + ConnectionLostException ex(__FILE__, __LINE__); ex.error = getSocketErrno(); throw ex; } |