diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 17:30:25 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-14 17:30:25 +0000 |
commit | 643596eaed751592c6b83262b6dffd367b4c1d9f (patch) | |
tree | f4e50cd29f55b73e621d679a8a33ab6b07930570 /cpp/src | |
parent | Add wakeup of UDP read on unix platforms (diff) | |
download | ice-643596eaed751592c6b83262b6dffd367b4c1d9f.tar.bz2 ice-643596eaed751592c6b83262b6dffd367b4c1d9f.tar.xz ice-643596eaed751592c6b83262b6dffd367b4c1d9f.zip |
Fixed conditional
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 18bd0ad14c4..95e8e782890 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); -#if defined(_WIN32) || defined(__sun) || defined(__hppa) || defined(__aix) +#if defined(_WIN32) || defined(__sun) || defined(__hppa) || defined(_AIX) // // This is required to unblock the select call when using thread per connection. // |