summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/RoutingTable.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-07-11 16:41:12 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-07-11 16:41:12 +0000
commit8ff7c2608eb845c3b6b637f4648ae726a11a158b (patch)
treef1dfb4d3a63752357480561fdd94f37692d8eb47 /cppe/src/IceE/RoutingTable.cpp
parentfix some recent changes to build in J2ME (diff)
downloadice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.bz2
ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.tar.xz
ice-8ff7c2608eb845c3b6b637f4648ae726a11a158b.zip
Put back IceUtil namespace
Diffstat (limited to 'cppe/src/IceE/RoutingTable.cpp')
-rw-r--r--cppe/src/IceE/RoutingTable.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/RoutingTable.cpp b/cppe/src/IceE/RoutingTable.cpp
index c63a646ceab..2f7c4d91889 100644
--- a/cppe/src/IceE/RoutingTable.cpp
+++ b/cppe/src/IceE/RoutingTable.cpp
@@ -29,7 +29,7 @@ IceInternal::RoutingTable::RoutingTable() :
void
IceInternal::RoutingTable::clear()
{
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
_table.clear();
_tableHint = _table.end();
@@ -45,7 +45,7 @@ IceInternal::RoutingTable::add(const ObjectPrx& prx)
ObjectPrx proxy = prx->ice_default(); // We insert the proxy in its default form into the routing table.
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
map<Identity, ObjectPrx>::iterator p = _table.end();
@@ -81,7 +81,7 @@ IceInternal::RoutingTable::get(const Identity& ident)
return 0;
}
- Ice::Mutex::Lock sync(*this);
+ IceUtil::Mutex::Lock sync(*this);
map<Identity, ObjectPrx>::iterator p = _table.end();