summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp
index c958f40e5e5..da2d0e66069 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Bitmask_Filter.cpp
@@ -45,7 +45,7 @@ TAO_EC_Bitmask_Filter::size (void) const
int
TAO_EC_Bitmask_Filter::filter (const RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
if (event.length () != 1)
return 0;
@@ -54,13 +54,13 @@ TAO_EC_Bitmask_Filter::filter (const RtecEventComm::EventSet& event,
|| (event[0].header.source & this->source_mask_) == 0)
return 0;
- return this->child_->filter (event, qos_info TAO_ENV_ARG_PARAMETER);
+ return this->child_->filter (event, qos_info ACE_ENV_ARG_PARAMETER);
}
int
TAO_EC_Bitmask_Filter::filter_nocopy (RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
if (event.length () != 1)
return 0;
@@ -69,25 +69,25 @@ TAO_EC_Bitmask_Filter::filter_nocopy (RtecEventComm::EventSet& event,
|| (event[0].header.source & this->source_mask_) == 0)
return 0;
- return this->child_->filter_nocopy (event, qos_info TAO_ENV_ARG_PARAMETER);
+ return this->child_->filter_nocopy (event, qos_info ACE_ENV_ARG_PARAMETER);
}
void
TAO_EC_Bitmask_Filter::push (const RtecEventComm::EventSet &event,
TAO_EC_QOS_Info &qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
if (this->parent () != 0)
- this->parent ()->push (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->parent ()->push (event, qos_info ACE_ENV_ARG_PARAMETER);
}
void
TAO_EC_Bitmask_Filter::push_nocopy (RtecEventComm::EventSet &event,
TAO_EC_QOS_Info &qos_info
- TAO_ENV_ARG_DECL)
+ ACE_ENV_ARG_DECL)
{
if (this->parent () != 0)
- this->parent ()->push_nocopy (event, qos_info TAO_ENV_ARG_PARAMETER);
+ this->parent ()->push_nocopy (event, qos_info ACE_ENV_ARG_PARAMETER);
}
void
@@ -117,7 +117,7 @@ int
TAO_EC_Bitmask_Filter::add_dependencies (
const RtecEventComm::EventHeader&,
const TAO_EC_QOS_Info &
- TAO_ENV_ARG_DECL_NOT_USED)
+ ACE_ENV_ARG_DECL_NOT_USED)
{
return 0;
}