diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-12-03 10:02:49 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-12-03 10:02:49 +0100 |
commit | 7464e320b77f207b722b402f6710a1eda6fb12f1 (patch) | |
tree | 319e7ca10d7cf959585cdb8dda065421cc13578b /cpp/src/IceUtil/CountDownLatch.cpp | |
parent | Fixed ICE-5078 - sent callback called from wrong thread (diff) | |
download | ice-7464e320b77f207b722b402f6710a1eda6fb12f1.tar.bz2 ice-7464e320b77f207b722b402f6710a1eda6fb12f1.tar.xz ice-7464e320b77f207b722b402f6710a1eda6fb12f1.zip |
Fixed ICE-4998 - Remove Mac OS references from documentation files
Diffstat (limited to 'cpp/src/IceUtil/CountDownLatch.cpp')
-rw-r--r-- | cpp/src/IceUtil/CountDownLatch.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/CountDownLatch.cpp b/cpp/src/IceUtil/CountDownLatch.cpp index 05e6be3d5df..66c0a39c1e6 100644 --- a/cpp/src/IceUtil/CountDownLatch.cpp +++ b/cpp/src/IceUtil/CountDownLatch.cpp @@ -111,8 +111,9 @@ IceUtilInternal::CountDownLatch::countDown() } #if defined(__APPLE__) // - // On MacOS X we do the broadcast with the mutex held. This seems to be necessary to prevent the - // broadcast call to hang (spinning in an infinite loop). + // On OS X we do the broadcast with the mutex held. This seems to + // be necessary to prevent the broadcast call to hang (spinning in + // an infinite loop). // if(broadcast) { |