summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/CountDownLatch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceUtil/CountDownLatch.cpp')
-rw-r--r--cpp/src/IceUtil/CountDownLatch.cpp5
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)
{