diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 17:25:10 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 17:25:10 +0000 |
commit | b90222b2bfaecabdd01b279771f308d676935c2d (patch) | |
tree | 7441a6c6d08d5f2f4ec509fe1dbc6dc868569dfe /cpp/src | |
parent | fixing compile warning (diff) | |
download | ice-b90222b2bfaecabdd01b279771f308d676935c2d.tar.bz2 ice-b90222b2bfaecabdd01b279771f308d676935c2d.tar.xz ice-b90222b2bfaecabdd01b279771f308d676935c2d.zip |
Add wakeup of UDP read on unix platforms
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/UdpTransceiver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp index 53ca5127097..18bd0ad14c4 100644 --- a/cpp/src/Ice/UdpTransceiver.cpp +++ b/cpp/src/Ice/UdpTransceiver.cpp @@ -66,7 +66,7 @@ IceInternal::UdpTransceiver::shutdownReadWrite() assert(_fd != INVALID_SOCKET); shutdownSocketReadWrite(_fd); -#ifdef _WIN32 +#if defined(_WIN32) || defined(__sun) || defined(__hppa) || defined(__aix) // // This is required to unblock the select call when using thread per connection. // |