summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-09-22 17:07:43 +0000
committerMarc Laukien <marc@zeroc.com>2002-09-22 17:07:43 +0000
commitee9134f129672068403f488e9a326411ca9cc1b1 (patch)
tree5bd03a07398ed4ffd2fc8d929ab4a0ce97a843a1 /cpp/test/IceUtil/thread/RWRecMutexTest.cpp
parentfixes (diff)
downloadice-ee9134f129672068403f488e9a326411ca9cc1b1.tar.bz2
ice-ee9134f129672068403f488e9a326411ca9cc1b1.tar.xz
ice-ee9134f129672068403f488e9a326411ca9cc1b1.zip
removed several static's
Diffstat (limited to 'cpp/test/IceUtil/thread/RWRecMutexTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/RWRecMutexTest.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
index 9987970f235..353314080cd 100644
--- a/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
+++ b/cpp/test/IceUtil/thread/RWRecMutexTest.cpp
@@ -67,7 +67,7 @@ public:
RWRecMutex::TryRLock lock(_mutex);
// Expected
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
test(false);
}
@@ -96,7 +96,7 @@ public:
RWRecMutex::TryRLock lock(_mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -258,7 +258,7 @@ public:
RWRecMutex::TryWLock lock(_mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -292,7 +292,7 @@ RWRecMutexTest::run()
{
RWRecMutex::TryRLock rlock2(mutex);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
test(false);
}
@@ -302,7 +302,7 @@ RWRecMutexTest::run()
RWRecMutex::TryWLock wlock(mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -312,7 +312,7 @@ RWRecMutexTest::run()
RWRecMutex::TryWLock wlock(mutex, Time::milliSeconds(10));
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -328,7 +328,7 @@ RWRecMutexTest::run()
RWRecMutex::TryRLock rlock(mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -337,7 +337,7 @@ RWRecMutexTest::run()
RWRecMutex::TryRLock rlock(mutex, Time::milliSeconds(10));
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -346,7 +346,7 @@ RWRecMutexTest::run()
RWRecMutex::TryWLock wlock(mutex);
// Expected
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
test(false);
}
@@ -355,7 +355,7 @@ RWRecMutexTest::run()
RWRecMutex::TryWLock wlock(mutex, Time::milliSeconds(10));
// Expected
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
test(false);
}
@@ -418,7 +418,7 @@ RWRecMutexTest::run()
RWRecMutex::TryRLock rlock2(mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -496,7 +496,7 @@ RWRecMutexTest::run()
RWRecMutex::TryRLock rlock2(mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}
@@ -509,7 +509,7 @@ RWRecMutexTest::run()
RWRecMutex::TryWLock rlock2(mutex);
test(false);
}
- catch(const LockedException&)
+ catch(const ThreadLockedException&)
{
// Expected
}