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/include/IceUtil/Thread.h | |
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/include/IceUtil/Thread.h')
-rw-r--r-- | cpp/include/IceUtil/Thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index 61ff62f6e6a..e1043183412 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -102,7 +102,7 @@ public: // This function is an implementation detail; // do not call it. // - void done(); + void _done(); protected: Mutex _stateMutex; |