diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-01-23 22:37:27 +0000 |
commit | e472963b0f661ca49b2c1f67fc17eb601923788b (patch) | |
tree | fb45d999b05a51060e29d806f214ed0186d9fb64 /cpp/src/IceSSL/OpenSSLPluginI.cpp | |
parent | fixes (diff) | |
download | ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.bz2 ice-e472963b0f661ca49b2c1f67fc17eb601923788b.tar.xz ice-e472963b0f661ca49b2c1f67fc17eb601923788b.zip |
HP-UX 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 6adc65674e2..d9dfcf39c2c 100644 --- a/cpp/src/IceSSL/OpenSSLPluginI.cpp +++ b/cpp/src/IceSSL/OpenSSLPluginI.cpp @@ -156,9 +156,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)) +#elif (defined(__linux) || defined(__sun) || defined(__hpux)) // - // On Linux and Solaris, pthread_t is an integer + // On Linux, Solaris and HP-UX, pthread_t is an integer // return static_cast<unsigned long>(pthread_self()); #else |