summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r--cpp/src/Ice/ReferenceFactory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp
index 334fa9984d3..6b720ec6321 100644
--- a/cpp/src/Ice/ReferenceFactory.cpp
+++ b/cpp/src/Ice/ReferenceFactory.cpp
@@ -31,7 +31,7 @@ void IceInternal::decRef(::IceInternal::ReferenceFactory* p) { p->__decRef(); }
ReferencePtr
IceInternal::ReferenceFactory::copy(const Reference* r) const
{
- Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
if(!_instance)
{
@@ -57,7 +57,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident,
const RouterInfoPtr& routerInfo,
bool collocationOptimization)
{
- Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
if(!_instance)
{
@@ -88,7 +88,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident,
bool collocationOptimization,
int locatorCacheTimeout)
{
- Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
if(!_instance)
{
@@ -114,7 +114,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident,
Reference::Mode mode,
const vector<Ice::ConnectionIPtr>& fixedConnections)
{
- Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
if(!_instance)
{
@@ -643,7 +643,7 @@ IceInternal::ReferenceFactory::ReferenceFactory(const InstancePtr& instance, con
void
IceInternal::ReferenceFactory::destroy()
{
- Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
if(!_instance)
{