summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-08-09 14:58:01 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-08-09 14:58:01 +0000
commit3f862089b748741b30e343d2051a4747a3bff2f2 (patch)
tree18d1dde1504e2d510a24f4d55aeee21bfea7c04f /cpp/src/Ice/ReferenceFactory.cpp
parentfixing bug 1291 (diff)
downloadice-3f862089b748741b30e343d2051a4747a3bff2f2.tar.bz2
ice-3f862089b748741b30e343d2051a4747a3bff2f2.tar.xz
ice-3f862089b748741b30e343d2051a4747a3bff2f2.zip
Borland C++Builder port mass commit
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)
{