summaryrefslogtreecommitdiff
path: root/TAO/tao/Adapter.cpp
diff options
context:
space:
mode:
authorokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
committerokellogg <okellogg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-29 20:21:11 +0000
commit56681ffa90714cf82c32e907c0f80cea75166740 (patch)
treefd798ba5478a08b4b6f842cb8515ed9776861f5f /TAO/tao/Adapter.cpp
parent6b5e98c78a7f66029147fad41e2e75cea35854aa (diff)
downloadATCD-56681ffa90714cf82c32e907c0f80cea75166740.tar.gz
ChangeLogTag:Tue Jan 29 21:09:12 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
Diffstat (limited to 'TAO/tao/Adapter.cpp')
-rw-r--r--TAO/tao/Adapter.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Adapter.cpp b/TAO/tao/Adapter.cpp
index 2af75966552..833c3696a60 100644
--- a/TAO/tao/Adapter.cpp
+++ b/TAO/tao/Adapter.cpp
@@ -44,29 +44,29 @@ TAO_Adapter_Registry::~TAO_Adapter_Registry (void)
void
TAO_Adapter_Registry::close (int wait_for_completion
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
for (size_t i = 0; i != this->adapters_count_; ++i)
{
- this->adapters_[i]->close (wait_for_completion TAO_ENV_ARG_PARAMETER);
+ this->adapters_[i]->close (wait_for_completion ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
void
TAO_Adapter_Registry::check_close (int wait_for_completion
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
for (size_t i = 0; i != this->adapters_count_; ++i)
{
- this->adapters_[i]->check_close (wait_for_completion TAO_ENV_ARG_PARAMETER);
+ this->adapters_[i]->check_close (wait_for_completion ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
}
void
TAO_Adapter_Registry::insert (TAO_Adapter *adapter
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
if (this->adapters_capacity_ == this->adapters_count_)
{
@@ -106,7 +106,7 @@ void
TAO_Adapter_Registry::dispatch (TAO_ObjectKey &key,
TAO_ServerRequest &request,
CORBA::Object_out forward_to
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
for (size_t i = 0; i != this->adapters_count_; ++i)
@@ -114,7 +114,7 @@ TAO_Adapter_Registry::dispatch (TAO_ObjectKey &key,
int r = this->adapters_[i]->dispatch (key,
request,
forward_to
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
if (r != TAO_Adapter::DS_MISMATCHED_KEY)