summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/AliveTest.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-03-10 01:27:01 +0000
committerMichi Henning <michi@zeroc.com>2003-03-10 01:27:01 +0000
commit889e1b049ebb34b57edf9ae62760fcb6e3fca95f (patch)
tree433acbcb23986b7e260c138f8239ef36dace7cf7 /cpp/test/IceUtil/thread/AliveTest.h
parentdyn thread pool (diff)
downloadice-889e1b049ebb34b57edf9ae62760fcb6e3fca95f.tar.bz2
ice-889e1b049ebb34b57edf9ae62760fcb6e3fca95f.tar.xz
ice-889e1b049ebb34b57edf9ae62760fcb6e3fca95f.zip
Added IceUtil::ThreadControl::isAlive() member function.
Diffstat (limited to 'cpp/test/IceUtil/thread/AliveTest.h')
-rw-r--r--cpp/test/IceUtil/thread/AliveTest.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/IceUtil/thread/AliveTest.h b/cpp/test/IceUtil/thread/AliveTest.h
new file mode 100644
index 00000000000..1239c917cfd
--- /dev/null
+++ b/cpp/test/IceUtil/thread/AliveTest.h
@@ -0,0 +1,31 @@
+// **********************************************************************
+//
+// Copyright (c) 2003
+// ZeroC, Inc.
+// Billerica, MA, USA
+//
+// All Rights Reserved.
+//
+// Ice is free software; you can redistribute it and/or modify it under
+// the terms of the GNU General Public License version 2 as published by
+// the Free Software Foundation.
+//
+// **********************************************************************
+
+#ifndef ALIVE_TEST_H
+#define ALIVE_TEST_H
+
+#include <TestBase.h>
+
+class AliveTest : public TestBase
+{
+public:
+
+ AliveTest();
+
+private:
+
+ virtual void run();
+};
+
+#endif