summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-20 14:45:21 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-20 14:45:21 +0000
commit40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf (patch)
treec745857a4dc22808006e1aca3f01c27090ad88ac /cpp/test/IceUtil/thread/MonitorMutexTest.cpp
parentAdded preliminary implementation of timed read/write trylock for (diff)
downloadice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.tar.bz2
ice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.tar.xz
ice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.zip
BusyException; naming fixes
Diffstat (limited to 'cpp/test/IceUtil/thread/MonitorMutexTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/MonitorMutexTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/thread/MonitorMutexTest.cpp b/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
index 415acfa0ba0..179164e4649 100644
--- a/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/MonitorMutexTest.cpp
@@ -181,9 +181,9 @@ MonitorMutexTest::run()
control.join();
control2.join();
- // TEST: timedwait
+ // TEST: timedWait
{
Monitor<Mutex>::Lock lock(monitor);
- test(!monitor.timedwait(500));
+ test(!monitor.timedWait(500));
}
}