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/Ice/Object.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/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 341252af3bd..4f8b7975f2c 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -136,7 +136,7 @@ Ice::Object::__dispatch(Incoming& in, const Current& current) void Ice::Object::__write(::IceInternal::BasicStream* __os) const { - IceUtil::Mutex::ConstLock sync(_activeFacetMapMutex); + IceUtil::Mutex::Lock sync(_activeFacetMapMutex); __os->write(Int(_activeFacetMap.size())); for (map<string, ObjectPtr>::const_iterator p = _activeFacetMap.begin(); p != _activeFacetMap.end(); ++p) |