summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/AliveTest.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-01-31 01:51:15 +0000
committerBernard Normier <bernard@zeroc.com>2006-01-31 01:51:15 +0000
commit4d7448e622a41c5a6e5fd5f05a20118036139fae (patch)
tree52aa4020efa36cf3b7e63ecbddb41ddc2146f65c /cpp/test/IceUtil/thread/AliveTest.cpp
parentDisabled unicode test (diff)
downloadice-4d7448e622a41c5a6e5fd5f05a20118036139fae.tar.bz2
ice-4d7448e622a41c5a6e5fd5f05a20118036139fae.tar.xz
ice-4d7448e622a41c5a6e5fd5f05a20118036139fae.zip
Moved isAlive from ThreadControl to Thread
Diffstat (limited to 'cpp/test/IceUtil/thread/AliveTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/AliveTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/thread/AliveTest.cpp b/cpp/test/IceUtil/thread/AliveTest.cpp
index 7a262d50a4e..50af56a70b4 100644
--- a/cpp/test/IceUtil/thread/AliveTest.cpp
+++ b/cpp/test/IceUtil/thread/AliveTest.cpp
@@ -92,8 +92,8 @@ AliveTest::run()
AliveTestThreadPtr t = new AliveTestThread(childCreated, parentReady);
IceUtil::ThreadControl c = t->start();
childCreated.waitForSignal();
- test(c.isAlive());
+ test(t->isAlive());
parentReady.signal();
c.join();
- test(!c.isAlive());
+ test(!t->isAlive());
}