diff options
author | Michi Henning <michi@zeroc.com> | 2006-02-14 05:56:59 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2006-02-14 05:56:59 +0000 |
commit | e8b9659810b89aca1af464934e1fd2d50ffd0e32 (patch) | |
tree | 90719827c074f85bb1de878c01d4e47e8db1758f /cpp/src | |
parent | Bug 843. (diff) | |
download | ice-e8b9659810b89aca1af464934e1fd2d50ffd0e32.tar.bz2 ice-e8b9659810b89aca1af464934e1fd2d50ffd0e32.tar.xz ice-e8b9659810b89aca1af464934e1fd2d50ffd0e32.zip |
Bug 724.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceUtil/Thread.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceUtil/Thread.cpp b/cpp/src/IceUtil/Thread.cpp index 54f77f9fe37..de33d92d928 100644 --- a/cpp/src/IceUtil/Thread.cpp +++ b/cpp/src/IceUtil/Thread.cpp @@ -34,7 +34,7 @@ IceUtil::ThreadControl::ThreadControl() : } } -IceUtil::ThreadControl::ThreadControl(HANDLE handle, DWORD id) : +IceUtil::ThreadControl::ThreadControl(HANDLE handle, IceUtil::ThreadControl::ID id) : _id(id) { HANDLE currentProcess = GetCurrentProcess(); @@ -120,7 +120,7 @@ IceUtil::ThreadControl::detach() // is closed. } -DWORD +IceUtil::ThreadControl::ID IceUtil::ThreadControl::id() const { return _id; @@ -296,7 +296,7 @@ IceUtil::Thread::_done() #else -IceUtil::ThreadControl::ThreadControl(pthread_t thread) : +IceUtil::ThreadControl::ThreadControl(IceUtil::ThreadControl::ID thread) : _thread(thread) { } @@ -358,7 +358,7 @@ IceUtil::ThreadControl::detach() } } -pthread_t +IceUtil::ThreadControl::ID IceUtil::ThreadControl::id() const { return _thread;; |