diff options
author | Matthew Newhook <matthew@zeroc.com> | 2001-12-31 14:27:22 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2001-12-31 14:27:22 +0000 |
commit | b51bb7c6bd2f50932219e96573939cef1f5c018c (patch) | |
tree | 45ca849effd41e325369ad2bf288476efba8bb52 /cpp/src/IceStorm/TopicI.cpp | |
parent | initial server support; align with stable_31 (diff) | |
download | ice-b51bb7c6bd2f50932219e96573939cef1f5c018c.tar.bz2 ice-b51bb7c6bd2f50932219e96573939cef1f5c018c.tar.xz ice-b51bb7c6bd2f50932219e96573939cef1f5c018c.zip |
Remove ConstLock, and friends.
Diffstat (limited to 'cpp/src/IceStorm/TopicI.cpp')
-rw-r--r-- | cpp/src/IceStorm/TopicI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceStorm/TopicI.cpp b/cpp/src/IceStorm/TopicI.cpp index 5e71fbdd887..45a4aa61872 100644 --- a/cpp/src/IceStorm/TopicI.cpp +++ b/cpp/src/IceStorm/TopicI.cpp @@ -239,7 +239,7 @@ private: // // Set of subscribers that encountered an error. // - mutable IceUtil::Mutex _errorMutex; + IceUtil::Mutex _errorMutex; mutable SubscriberList _error; }; @@ -513,7 +513,7 @@ TopicI::getLinkProxy(const Ice::Current&) bool TopicI::destroyed() const { - IceUtil::RecMutex::ConstLock sync(*this); + IceUtil::RecMutex::Lock sync(*this); return _destroyed; } |