diff options
author | Michi Henning <michi@zeroc.com> | 2006-01-31 03:17:01 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2006-01-31 03:17:01 +0000 |
commit | 0390946a185886d56fe9f53c6ae0871e2f48690d (patch) | |
tree | 2566e1c6199ebaa0d39f6492493d0a72aa64edfe /cpp | |
parent | Bug 839. (diff) | |
download | ice-0390946a185886d56fe9f53c6ae0871e2f48690d.tar.bz2 ice-0390946a185886d56fe9f53c6ae0871e2f48690d.tar.xz ice-0390946a185886d56fe9f53c6ae0871e2f48690d.zip |
Removed isAlive() method from ThreadControl.
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/IceUtil/Thread.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index 47d71dd9942..61ff62f6e6a 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -62,12 +62,6 @@ public: // void detach(); - // - // Check whether a thread is still alive. This is useful to implement - // a non-blocking join(). - // - bool isAlive() const; - static void sleep(const Time&); static void yield(); @@ -99,7 +93,8 @@ public: bool operator<(const Thread&) const; // - // Is this thread still running? + // Check whether a thread is still alive. This is useful to implement + // a non-blocking join(). // bool isAlive() const; |