summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-11-14 17:25:10 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-11-14 17:25:10 +0000
commitb90222b2bfaecabdd01b279771f308d676935c2d (patch)
tree7441a6c6d08d5f2f4ec509fe1dbc6dc868569dfe /cpp/src
parentfixing compile warning (diff)
downloadice-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.cpp2
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.
//