diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
commit | a60f1f651d60e48cc4f4a8e477c5b7813d24418d (patch) | |
tree | ab6fb426a1cad77c9ba865799e542fda62e8d4b1 /cpp/src/IceSSL/OpenSSLPluginI.cpp | |
parent | Removed substition ".cpp" -> ".cs". This is now done by slice2cs itself. (diff) | |
download | ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.bz2 ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.xz ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.zip |
AIX port
Diffstat (limited to 'cpp/src/IceSSL/OpenSSLPluginI.cpp')
-rw-r--r-- | cpp/src/IceSSL/OpenSSLPluginI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginI.cpp b/cpp/src/IceSSL/OpenSSLPluginI.cpp index 0d31dfda592..8f8fe00174a 100644 --- a/cpp/src/IceSSL/OpenSSLPluginI.cpp +++ b/cpp/src/IceSSL/OpenSSLPluginI.cpp @@ -151,9 +151,9 @@ idFunction() // On FreeBSD, pthread_t is a pointer to a per-thread structure // return reinterpret_cast<unsigned long>(pthread_self()); -#elif (defined(__linux) || defined(__sun) || defined(__hpux)) +#elif (defined(__linux) || defined(__sun) || defined(__hpux)) || defined(_AIX) // - // On Linux, Solaris and HP-UX, pthread_t is an integer + // On Linux, Solaris, HP-UX and AIX, pthread_t is an integer // return static_cast<unsigned long>(pthread_self()); #else |