diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-04-22 22:16:29 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-04-22 22:16:29 +0000 |
commit | b3926429557017367ad4c92d8fd42f17786e8c61 (patch) | |
tree | 38fc04618f3a8d0e280ac6da0b1f863677e3d012 /cpp/test/IceUtil/thread/RWRecMutexTest.cpp | |
parent | Added IceUtil/Time.h (diff) | |
download | ice-b3926429557017367ad4c92d8fd42f17786e8c61.tar.bz2 ice-b3926429557017367ad4c92d8fd42f17786e8c61.tar.xz ice-b3926429557017367ad4c92d8fd42f17786e8c61.zip |
time updates.
Diffstat (limited to 'cpp/test/IceUtil/thread/RWRecMutexTest.cpp')
-rw-r--r-- | cpp/test/IceUtil/thread/RWRecMutexTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp index b8d1d3b8886..070a6a51b2c 100644 --- a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp +++ b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp @@ -309,7 +309,7 @@ RWRecMutexTest::run() try { - RWRecMutex::TryWLock wlock(mutex, 10); + RWRecMutex::TryWLock wlock(mutex, Time::milliSeconds(10)); test(false); } catch(const LockedException&) @@ -334,7 +334,7 @@ RWRecMutexTest::run() } try { - RWRecMutex::TryRLock rlock(mutex, 10); + RWRecMutex::TryRLock rlock(mutex, Time::milliSeconds(10)); test(false); } catch(const LockedException&) @@ -352,7 +352,7 @@ RWRecMutexTest::run() } try { - RWRecMutex::TryWLock wlock(mutex, 10); + RWRecMutex::TryWLock wlock(mutex, Time::milliSeconds(10)); // Expected } catch(const LockedException&) |