summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-11-29 12:21:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-11-29 12:21:54 +0000
commitf9584ab76fb888ec530489879dd0fd99dd4a9b2b (patch)
tree2176417ecbc9adfdfbf62a54eb81440ef3e04abe
parentbe5a43bf66147c939bda08c5c89fe6a6dfe4d077 (diff)
downloadATCD-f9584ab76fb888ec530489879dd0fd99dd4a9b2b.tar.gz
Tue Nov 29 12:21:12 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst: Enable some more tests in the static configuration * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp: Doxygen changes and small code improvements
-rw-r--r--TAO/ChangeLog8
-rw-r--r--TAO/bin/tao_orb_tests.lst6
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp25
3 files changed, 24 insertions, 15 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 15316320321..f9aa27bbf31 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Nov 29 12:21:12 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * bin/tao_orb_tests.lst:
+ Enable some more tests in the static configuration
+
+ * orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
+ Doxygen changes and small code improvements
+
Tue Nov 29 12:15:13 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/tao.mpc:
diff --git a/TAO/bin/tao_orb_tests.lst b/TAO/bin/tao_orb_tests.lst
index da90e12eade..a2c2e659dab 100644
--- a/TAO/bin/tao_orb_tests.lst
+++ b/TAO/bin/tao_orb_tests.lst
@@ -316,11 +316,11 @@ TAO/tests/POA/Default_Servant2/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_M
TAO/tests/POA/Explicit_Activation/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !ACE_FOR_TAO
TAO/tests/POA/FindPOA/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO
TAO/tests/POA/NewPOA/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO
-TAO/tests/POA/On_Demand_Act_Direct_Coll/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !ACE_FOR_TAO
+TAO/tests/POA/On_Demand_Act_Direct_Coll/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !ACE_FOR_TAO
TAO/tests/POA/On_Demand_Activation/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !ACE_FOR_TAO
-TAO/tests/POA/On_Demand_Loading/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !KCC_Linux !ACE_FOR_TAO
+TAO/tests/POA/On_Demand_Loading/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !ACE_FOR_TAO
TAO/tests/POA/Reference_Counted_Servant/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !ACE_FOR_TAO
-TAO/tests/POA/Loader/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !KCC_Linux !ACE_FOR_TAO
+TAO/tests/POA/Loader/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO !STATIC !ACE_FOR_TAO
TAO/tests/POA/RootPOA/run_test.pl:
TAO/tests/DiffServ/run_test.pl: !MINIMUM !CORBA_E_COMPACT !CORBA_E_MICRO
TAO/tests/IORManipulation/run_test.pl:
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
index 80da3f33dd5..79d217939cf 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp
@@ -23,10 +23,11 @@ static const int DEFAULT_START_LIMIT = 1;
static const int PING_RETRY_SCHEDULE[] = {0, 10, 100, 500, 1000, 1000, 1000, 1000, 5000, 5000};
static const ACE_Time_Value DEFAULT_SERVER_TIMEOUT (0, 10 * 1000); // 10ms
-// We want to give shutdown a little more time to work, so that we
-// can guarantee to the tao_imr utility that it has shutdown. The tao_imr
-// utility prints a different message depending on whether shutdown succeeds
-// or times out.
+
+/// We want to give shutdown a little more time to work, so that we
+/// can guarantee to the tao_imr utility that it has shutdown. The tao_imr
+/// utility prints a different message depending on whether shutdown succeeds
+/// or times out.
static const ACE_Time_Value DEFAULT_SHUTDOWN_TIMEOUT (0, 5000 * 1000);
static PortableServer::POA_ptr
@@ -111,7 +112,7 @@ ImR_Locator_i::init_with_orb (CORBA::ORB_ptr orb, Options& opts)
obj = this->imr_poa_->id_to_reference (id.in ());
if (startup_timeout_ > ACE_Time_Value::zero)
{
- obj = set_timeout_policy (obj.in (), startup_timeout_);
+ obj = this->set_timeout_policy (obj.in (), startup_timeout_);
}
waiter_ = ImplementationRepository::AsyncStartupWaiter::_narrow (obj.in ());
@@ -923,7 +924,7 @@ ImR_Locator_i::shutdown_server (const char* server)
throw ImplementationRepository::NotFound ();
}
- connect_server (*info);
+ this->connect_server (*info);
if (CORBA::is_nil (info->server.in ()))
{
@@ -934,7 +935,7 @@ ImR_Locator_i::shutdown_server (const char* server)
try
{
- CORBA::Object_var obj = set_timeout_policy (info->server.in (), DEFAULT_SHUTDOWN_TIMEOUT);
+ CORBA::Object_var obj = this->set_timeout_policy (info->server.in (), DEFAULT_SHUTDOWN_TIMEOUT);
ImplementationRepository::ServerObject_var server =
ImplementationRepository::ServerObject::_unchecked_narrow (obj.in ());
server->shutdown ();
@@ -1087,7 +1088,7 @@ ImR_Locator_i::server_is_shutting_down (const char* server)
info->reset ();
- int err = this->repository_.update_server (*info);
+ int const err = this->repository_.update_server (*info);
ACE_ASSERT (err == 0);
ACE_UNUSED_ARG (err);
}
@@ -1110,7 +1111,7 @@ ImR_Locator_i::find (const char* server,
{
ACE_NEW_THROW_EX (imr_info, ImplementationRepository::ServerInformation, CORBA::NO_MEMORY ());
imr_info->startup.activation= ImplementationRepository::NORMAL;
- if (debug_ > 1)
+ if (this->debug_ > 1)
ACE_DEBUG ((LM_DEBUG, "ImR: Cannot find server <%C>\n", server));
}
}
@@ -1214,7 +1215,7 @@ ImR_Locator_i::connect_activator (Activator_Info& info)
if (startup_timeout_ > ACE_Time_Value::zero)
{
- obj = set_timeout_policy (obj.in (), startup_timeout_);
+ obj = this->set_timeout_policy (obj.in (), startup_timeout_);
}
info.activator =
@@ -1299,7 +1300,7 @@ ImR_Locator_i::connect_server (Server_Info& info)
return;
}
- obj = set_timeout_policy (obj.in (), DEFAULT_SERVER_TIMEOUT);
+ obj = this->set_timeout_policy (obj.in (), DEFAULT_SERVER_TIMEOUT);
info.server =
ImplementationRepository::ServerObject::_unchecked_narrow (obj.in ());
@@ -1414,7 +1415,7 @@ ImR_Locator_i::is_alive_i (Server_Info& info)
return 1;
}
- connect_server (info);
+ this->connect_server (info);
if (CORBA::is_nil (info.server.in ()))
{