diff options
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 |