summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging_ORBInitializer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Messaging_ORBInitializer.cpp')
-rw-r--r--TAO/tao/Messaging_ORBInitializer.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/TAO/tao/Messaging_ORBInitializer.cpp b/TAO/tao/Messaging_ORBInitializer.cpp
index 7d545faa4af..85ccd36c800 100644
--- a/TAO/tao/Messaging_ORBInitializer.cpp
+++ b/TAO/tao/Messaging_ORBInitializer.cpp
@@ -16,7 +16,7 @@ ACE_RCSID (TAO,
void
TAO_Messaging_ORBInitializer::pre_init (
PortableInterceptor::ORBInitInfo_ptr
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
#if (TAO_HAS_RELATIVE_ROUNDTRIP_TIMEOUT_POLICY == 1)
@@ -32,18 +32,18 @@ TAO_Messaging_ORBInitializer::pre_init (
void
TAO_Messaging_ORBInitializer::post_init (
PortableInterceptor::ORBInitInfo_ptr info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->register_policy_factories (info
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}
void
TAO_Messaging_ORBInitializer::register_policy_factories (
PortableInterceptor::ORBInitInfo_ptr info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
// Register the Messaging policy factories.
@@ -73,13 +73,13 @@ TAO_Messaging_ORBInitializer::register_policy_factories (
type = TAO_MESSAGING_RELATIVE_RT_TIMEOUT_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_SYNC_SCOPE_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
#if (TAO_HAS_BUFFERING_CONSTRAINT_POLICY == 1)
@@ -87,7 +87,7 @@ TAO_Messaging_ORBInitializer::register_policy_factories (
type = TAO_BUFFERING_CONSTRAINT_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
#endif /* TAO_HAS_BUFFERING_CONSTRAINT_POLICY == 1 */
@@ -95,68 +95,68 @@ TAO_Messaging_ORBInitializer::register_policy_factories (
type = TAO_MESSAGING_REBIND_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REQUEST_PRIORITY_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REPLY_PRIORITY_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REQUEST_START_TIME_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REQUEST_END_TIME_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REPLY_START_TIME_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_REPLY_END_TIME_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_RELATIVE_REQ_TIMEOUT_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_ROUTING_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_MAX_HOPS_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
type = TAO_MESSAGING_QUEUE_ORDER_POLICY_TYPE;
info->register_policy_factory (type,
this->policy_factory_.in ()
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
}