summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp')
-rw-r--r--TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp
index deb71c18f93..db1499aa26f 100644
--- a/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp
+++ b/TAO/orbsvcs/performance-tests/EC_Federated_Scalability/Coordinator.cpp
@@ -37,7 +37,7 @@ ECFS_Coordinator::~ECFS_Coordinator (void)
void
ECFS_Coordinator::join (Control::Peer_ptr peer
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
{
@@ -59,14 +59,14 @@ ECFS_Coordinator::join (Control::Peer_ptr peer
for (i = 0; i != this->peers_count_; ++i)
{
RtecEventChannelAdmin::EventChannel_var channel =
- this->peers_[i]->channel (TAO_ENV_SINGLE_ARG_PARAMETER);
+ this->peers_[i]->channel (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
for (size_t j = 0; j != this->peers_count_; ++j)
{
if (i != j)
{
- this->peers_[j]->connect (channel.in () TAO_ENV_ARG_PARAMETER);
+ this->peers_[j]->connect (channel.in () ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
@@ -89,7 +89,7 @@ ECFS_Coordinator::join (Control::Peer_ptr peer
{
loopbacks[lcount++] =
this->peers_[j]->setup_loopback (experiment_id
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
@@ -106,7 +106,7 @@ ECFS_Coordinator::join (Control::Peer_ptr peer
experiment_id,
this->iterations_,
gsf
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
ACE_Sample_History history (samples->length ());
@@ -149,7 +149,7 @@ ECFS_Coordinator::join (Control::Peer_ptr peer
for (j = 0; j != lcount; ++j)
{
- loopbacks[j]->destroy (TAO_ENV_SINGLE_ARG_PARAMETER);
+ loopbacks[j]->destroy (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
}
@@ -158,10 +158,10 @@ ECFS_Coordinator::join (Control::Peer_ptr peer
for (i = 0; i != this->peers_count_; ++i)
{
- this->peers_[i]->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER);
+ this->peers_[i]->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
}
- this->orb_->shutdown (0 TAO_ENV_ARG_PARAMETER);
+ this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}