diff options
Diffstat (limited to 'TAO/tests/Big_Twoways/Coordinator.cpp')
-rw-r--r-- | TAO/tests/Big_Twoways/Coordinator.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tests/Big_Twoways/Coordinator.cpp b/TAO/tests/Big_Twoways/Coordinator.cpp index 60a43593f69..6b6b332a9cc 100644 --- a/TAO/tests/Big_Twoways/Coordinator.cpp +++ b/TAO/tests/Big_Twoways/Coordinator.cpp @@ -30,7 +30,7 @@ Coordinator::create_session_list (Test::Session_Control_ptr session_control, CORBA::ULong thread_count, CORBA::ULong message_count, Test::Session_List &session_list - TAO_ENV_ARG_DECL) + ACE_ENV_ARG_DECL) { session_list.length (this->peer_count_); CORBA::ULong count = 0; @@ -44,13 +44,13 @@ Coordinator::create_session_list (Test::Session_Control_ptr session_control, thread_count, message_count, this->peer_count_ - TAO_ENV_ARG_PARAMETER); + ACE_ENV_ARG_PARAMETER); ACE_CHECK; } } void -Coordinator::shutdown_all_peers (TAO_ENV_SINGLE_ARG_DECL) +Coordinator::shutdown_all_peers (ACE_ENV_SINGLE_ARG_DECL) { for (Test::Peer_var *i = this->peers_; i != this->peers_ + this->peer_count_; @@ -58,7 +58,7 @@ Coordinator::shutdown_all_peers (TAO_ENV_SINGLE_ARG_DECL) { ACE_TRY { - (*i)->shutdown (TAO_ENV_SINGLE_ARG_PARAMETER); + (*i)->shutdown (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; } ACE_CATCHANY @@ -72,7 +72,7 @@ Coordinator::shutdown_all_peers (TAO_ENV_SINGLE_ARG_DECL) void Coordinator::add_peer (Test::Peer_ptr peer - TAO_ENV_ARG_DECL_NOT_USED) + ACE_ENV_ARG_DECL_NOT_USED) ACE_THROW_SPEC ((CORBA::SystemException)) { if (this->peer_count_ >= this->peer_max_) |