diff options
Diffstat (limited to 'cppe/src/IceE/RoutingTable.cpp')
-rw-r--r-- | cppe/src/IceE/RoutingTable.cpp | 6 |
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(); |