summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/Thread.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-01-31 03:17:01 +0000
committerMichi Henning <michi@zeroc.com>2006-01-31 03:17:01 +0000
commit0390946a185886d56fe9f53c6ae0871e2f48690d (patch)
tree2566e1c6199ebaa0d39f6492493d0a72aa64edfe /cpp/include/IceUtil/Thread.h
parentBug 839. (diff)
downloadice-0390946a185886d56fe9f53c6ae0871e2f48690d.tar.bz2
ice-0390946a185886d56fe9f53c6ae0871e2f48690d.tar.xz
ice-0390946a185886d56fe9f53c6ae0871e2f48690d.zip
Removed isAlive() method from ThreadControl.
Diffstat (limited to 'cpp/include/IceUtil/Thread.h')
-rw-r--r--cpp/include/IceUtil/Thread.h9
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;