summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2017-03-28 10:25:16 -0400
committerJoe George <joe@zeroc.com>2017-03-28 10:25:16 -0400
commit7f80ea0db36533c25ffacfccb05a4b8ee657a95f (patch)
tree7b619b723fa94ac7996ca9578eae3fbf40f4cc9e /cpp
parentICE-7707 Improved handling of argc/argv arguments (diff)
parentICE-7483 - Rename OS X to macOS (diff)
downloadice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.tar.bz2
ice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.tar.xz
ice-7f80ea0db36533c25ffacfccb05a4b8ee657a95f.zip
Merge remote-tracking branch 'origin/3.6'
Diffstat (limited to 'cpp')
-rw-r--r--cpp/BuildInstructionsOSX.md2
-rw-r--r--cpp/src/Ice/CountDownLatch.cpp2
-rw-r--r--cpp/src/Ice/DynamicLibrary.cpp2
-rwxr-xr-xcpp/src/Ice/Network.cpp2
-rwxr-xr-xcpp/src/Ice/UdpTransceiver.cpp2
-rw-r--r--cpp/src/IcePatch2Lib/Util.cpp2
-rw-r--r--cpp/src/IceSSL/SecureTransportTransceiverI.cpp2
-rw-r--r--cpp/test/Ice/udp/AllTests.cpp2
-rwxr-xr-xcpp/test/IceSSL/certs/makecerts.py2
-rw-r--r--cpp/test/IceSSL/configuration/AllTests.cpp4
10 files changed, 11 insertions, 11 deletions
diff --git a/cpp/BuildInstructionsOSX.md b/cpp/BuildInstructionsOSX.md
index ca84338b04d..ebecf058b12 100644
--- a/cpp/BuildInstructionsOSX.md
+++ b/cpp/BuildInstructionsOSX.md
@@ -1,4 +1,4 @@
-# Building Ice for C++ on OS X
+# Building Ice for C++ on macOS
This file describes the Ice source distribution, including information about
compiler requirements, third-party dependencies, and instructions for building
diff --git a/cpp/src/Ice/CountDownLatch.cpp b/cpp/src/Ice/CountDownLatch.cpp
index 53887744c01..3a363cc3709 100644
--- a/cpp/src/Ice/CountDownLatch.cpp
+++ b/cpp/src/Ice/CountDownLatch.cpp
@@ -115,7 +115,7 @@ IceUtilInternal::CountDownLatch::countDown()
}
#if defined(__APPLE__)
//
- // On OS X we do the broadcast with the mutex held. This seems to
+ // On macOS 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).
//
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp
index 6273ebd7a98..82ca2addc02 100644
--- a/cpp/src/Ice/DynamicLibrary.cpp
+++ b/cpp/src/Ice/DynamicLibrary.cpp
@@ -183,7 +183,7 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc
#ifdef __APPLE__
//
- // On OS X fallback to .so and .bundle extensions, if the default
+ // On macOS fallback to .so and .bundle extensions, if the default
// .dylib fails.
//
if(!load(lib + ".dylib"))
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp
index 572df1b4cfc..599f6537896 100755
--- a/cpp/src/Ice/Network.cpp
+++ b/cpp/src/Ice/Network.cpp
@@ -1107,7 +1107,7 @@ IceInternal::getAddresses(const string& host, int port, ProtocolSupport protocol
// In theory, getaddrinfo should only return EAI_NONAME if
// AI_NUMERICHOST is specified and the host name is not a IP
- // address. However on some platforms (e.g. OS X 10.4.x)
+ // address. However on some platforms (e.g. macOS 10.4.x)
// EAI_NODATA is also returned so we also check for it.
# ifdef EAI_NODATA
if(!canBlock && (rs == EAI_NONAME || rs == EAI_NODATA))
diff --git a/cpp/src/Ice/UdpTransceiver.cpp b/cpp/src/Ice/UdpTransceiver.cpp
index bcb78ed2373..2b36f64d754 100755
--- a/cpp/src/Ice/UdpTransceiver.cpp
+++ b/cpp/src/Ice/UdpTransceiver.cpp
@@ -899,7 +899,7 @@ IceInternal::UdpTransceiver::UdpTransceiver(const ProtocolInstancePtr& instance,
//
// NOTE: setting the multicast interface before performing the
- // connect is important for some OS such as OS X.
+ // connect is important for some OS such as macOS.
//
if(isMulticast(_addr))
{
diff --git a/cpp/src/IcePatch2Lib/Util.cpp b/cpp/src/IcePatch2Lib/Util.cpp
index 63aa2583532..4fb9f32850d 100644
--- a/cpp/src/IcePatch2Lib/Util.cpp
+++ b/cpp/src/IcePatch2Lib/Util.cpp
@@ -34,7 +34,7 @@
#include <iterator>
-// Ignore OS X OpenSSL deprecation warnings
+// Ignore macOS OpenSSL deprecation warnings
#ifdef __APPLE__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#endif
diff --git a/cpp/src/IceSSL/SecureTransportTransceiverI.cpp b/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
index 6d83dba98df..a4fad08ca87 100644
--- a/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
+++ b/cpp/src/IceSSL/SecureTransportTransceiverI.cpp
@@ -160,7 +160,7 @@ checkTrustResult(SecTrustRef trust,
}
default:
// case kSecTrustResultInvalid:
- // case kSecTrustResultConfirm: // Used in old OS X versions
+ // case kSecTrustResultConfirm: // Used in old macOS versions
// case kSecTrustResultDeny:
// case kSecTrustResultRecoverableTrustFailure:
// case kSecTrustResultFatalTrustFailure:
diff --git a/cpp/test/Ice/udp/AllTests.cpp b/cpp/test/Ice/udp/AllTests.cpp
index fbb4e7ea083..450d6e6c9f5 100644
--- a/cpp/test/Ice/udp/AllTests.cpp
+++ b/cpp/test/Ice/udp/AllTests.cpp
@@ -200,7 +200,7 @@ allTests(const CommunicatorPtr& communicator)
//
// Sending the replies back on the multicast UDP connection doesn't work for most
- // platform (it works for OS X Leopard but not Snow Leopard, doesn't work on SLES,
+ // platform (it works for macOS Leopard but not Snow Leopard, doesn't work on SLES,
// Windows...). For Windows, see UdpTransceiver constructor for the details. So
// we don't run this test.
//
diff --git a/cpp/test/IceSSL/certs/makecerts.py b/cpp/test/IceSSL/certs/makecerts.py
index 424213a7307..aa60ddb3bdb 100755
--- a/cpp/test/IceSSL/certs/makecerts.py
+++ b/cpp/test/IceSSL/certs/makecerts.py
@@ -168,7 +168,7 @@ for (ca, alias, path, args) in savecerts:
cert.save(path + ".p12", **args)
#
-# Create DH parameters to use with OS X Secure Transport.
+# Create DH parameters to use with macOS Secure Transport.
#
if clean or not os.path.exists("dh_params512.der"):
ca1.run("openssl", "dhparam", 512, outform="DER", out="dh_params512.der")
diff --git a/cpp/test/IceSSL/configuration/AllTests.cpp b/cpp/test/IceSSL/configuration/AllTests.cpp
index b619416eff5..0fcfcb8deca 100644
--- a/cpp/test/IceSSL/configuration/AllTests.cpp
+++ b/cpp/test/IceSSL/configuration/AllTests.cpp
@@ -2164,7 +2164,7 @@ allTests(const CommunicatorPtr& communicator, const string& testDir, bool p12)
// }
# else
//
- // In OS X we don't support IceSSL.Protocols as secure transport doesn't allow to set the enabled protocols
+ // In macOS we don't support IceSSL.Protocols as secure transport doesn't allow to set the enabled protocols
// instead we use IceSSL.ProtocolVersionMax IceSSL.ProtocolVersionMin to set the maximun and minimum
// enabled protocol versions. See the test bellow.
//
@@ -2608,7 +2608,7 @@ allTests(const CommunicatorPtr& communicator, const string& testDir, bool p12)
{
# ifndef ICE_USE_SECURE_TRANSPORT
//
- // OS X 10.10 bug the handshake fails attempting client auth
+ // macOS 10.10 bug the handshake fails attempting client auth
// with anon cipher.
//
cerr << ex << endl;