diff options
author | Michi Henning <michi@zeroc.com> | 2006-01-31 03:25:13 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2006-01-31 03:25:13 +0000 |
commit | fd96accfbbb55da52323d8173ccff7cd6ce61df7 (patch) | |
tree | 764c21ca10b086aa84d16a527e566b072b15b9eb /cpp/src/IceUtil | |
parent | Removed isAlive() method from ThreadControl. (diff) | |
download | ice-fd96accfbbb55da52323d8173ccff7cd6ce61df7.tar.bz2 ice-fd96accfbbb55da52323d8173ccff7cd6ce61df7.tar.xz ice-fd96accfbbb55da52323d8173ccff7cd6ce61df7.zip |
Renamed Thread::done() to Thread::_done(), to make it clearer that this
method isn't part of the public API.
Diffstat (limited to 'cpp/src/IceUtil')
-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 224dcfa3632..2fded2e8aa5 100644 --- a/cpp/src/IceUtil/Thread.cpp +++ b/cpp/src/IceUtil/Thread.cpp @@ -190,7 +190,7 @@ WINAPI startHook(void* arg) cerr << "IceUtil::Thread::run(): uncaught exception: "; cerr << e << endl; } - thread->done(); + thread->_done(); return 0; } @@ -281,7 +281,7 @@ IceUtil::Thread::isAlive() const } void -IceUtil::Thread::done() +IceUtil::Thread::_done() { IceUtil::Mutex::Lock lock(_stateMutex); _running = false; @@ -411,7 +411,7 @@ startHook(void* arg) { cerr << "IceUtil::Thread::run(): uncaught exception" << endl; } - thread->done(); + thread->_done(); return 0; } @@ -518,7 +518,7 @@ IceUtil::Thread::isAlive() const } void -IceUtil::Thread::done() +IceUtil::Thread::_done() { IceUtil::Mutex::Lock lock(_stateMutex); _running = false; |