summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Servant_Activator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/Servant_Activator.cpp')
-rw-r--r--CIAO/ciao/Servant_Activator.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/CIAO/ciao/Servant_Activator.cpp b/CIAO/ciao/Servant_Activator.cpp
index 2638133fa23..cf194524ec7 100644
--- a/CIAO/ciao/Servant_Activator.cpp
+++ b/CIAO/ciao/Servant_Activator.cpp
@@ -25,7 +25,7 @@ namespace CIAO
guard,
this->mutex_);
- size_t const sz = this->slot_index_;
+ const size_t sz = this->slot_index_;
for (size_t t = 0; t != sz; ++t)
{
@@ -49,16 +49,16 @@ namespace CIAO
guard,
this->mutex_,
0);
- size_t const sz = this->slot_index_;
+ const size_t sz = this->slot_index_;
for (size_t t = 0; t != sz; ++t)
{
Port_Activator *&tmp = this->pa_[t];
- if (ACE_OS::strcmp (tmp->oid (), str.in ()) == 0)
- {
- tmp->oid ("dummy");
- //delete tmp;
- //--this->slot_index_;
- }
+ if (ACE_OS::strcmp (tmp->name (), str.in ()) == 0)
+ {
+ tmp->set_name ("dummy");
+ //delete tmp;
+ //--this->slot_index_;
+ }
}
}
return true;
@@ -86,7 +86,7 @@ namespace CIAO
this->mutex_,
0);
- size_t const sz = this->slot_index_;
+ const size_t sz = this->slot_index_;
Port_Activator *tmp = 0;
@@ -104,7 +104,7 @@ namespace CIAO
" value from the array is null \n"));
continue;
}
- if (ACE_OS::strcmp (tmp->oid (),
+ if (ACE_OS::strcmp (tmp->name (),
str.in ()) == 0)
{
// We should try avoiding making outbound calls with the
@@ -135,7 +135,7 @@ namespace CIAO
CORBA::String_var str =
PortableServer::ObjectId_to_string (oid);
- size_t const sz = this->slot_index_;
+ const size_t sz = this->slot_index_;
Port_Activator *tmp = 0;
@@ -152,7 +152,7 @@ namespace CIAO
ACE_DEBUG ((LM_DEBUG, "Port Activator is NULL\n"));
continue;
}
- if (ACE_OS::strcmp (tmp->oid (),
+ if (ACE_OS::strcmp (tmp->name (),
str.in ()) == 0)
{
ACE_DEBUG ((LM_DEBUG, "Deactivating Port %s\n",