diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-01-31 01:51:15 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-01-31 01:51:15 +0000 |
commit | 4d7448e622a41c5a6e5fd5f05a20118036139fae (patch) | |
tree | 52aa4020efa36cf3b7e63ecbddb41ddc2146f65c /cpp/test/IceUtil/thread/AliveTest.cpp | |
parent | Disabled unicode test (diff) | |
download | ice-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.cpp | 4 |
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()); } |