summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 22:46:16 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 22:46:16 +0000
commit2a1e929dc0ec88d5264c311045059e56a727dc1f (patch)
treea5ebf446a9ff816fbd24061e073747ec11613161 /TAO/orbsvcs/orbsvcs/Event
parentb0ef92ae5dacb96a0deaa65005fbf80ea5183f3c (diff)
downloadATCD-2a1e929dc0ec88d5264c311045059e56a727dc1f.tar.gz
ChangeLogTag:Tue Jun 22 17:45:16 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Basic_Factory.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp6
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Null_Factory.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.cpp4
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp14
9 files changed, 21 insertions, 21 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Basic_Factory.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Basic_Factory.cpp
index 31c65a2a770..72610fade57 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Basic_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Basic_Factory.cpp
@@ -109,7 +109,7 @@ TAO_EC_Basic_Factory::destroy_proxy_push_consumer (TAO_EC_ProxyPushConsumer *x)
}
TAO_EC_Timeout_Generator*
-TAO_EC_Basic_Factory::create_timeout_generator (TAO_EC_Event_Channel *ec)
+TAO_EC_Basic_Factory::create_timeout_generator (TAO_EC_Event_Channel *)
{
// @@ TODO fixme
TAO_ORB_Core* orb_core = TAO_ORB_Core_instance ();
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
index 65e2d57e452..aef6f7dc5ad 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp
@@ -504,7 +504,7 @@ TAO_EC_Default_Factory::destroy_proxy_push_consumer (TAO_EC_ProxyPushConsumer *x
}
TAO_EC_Timeout_Generator*
-TAO_EC_Default_Factory::create_timeout_generator (TAO_EC_Event_Channel *ec)
+TAO_EC_Default_Factory::create_timeout_generator (TAO_EC_Event_Channel *)
{
if (this->timeout_ == 0)
{
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
index ab66a4195eb..2759cb2c0a1 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
@@ -32,7 +32,7 @@ TAO_EC_Reactive_Dispatching::shutdown (void)
void
TAO_EC_Reactive_Dispatching::push (TAO_EC_ProxyPushSupplier* proxy,
const RtecEventComm::EventSet& event,
- TAO_EC_QOS_Info& qos_info,
+ TAO_EC_QOS_Info&,
CORBA::Environment& ACE_TRY_ENV)
{
proxy->reactive_push_to_consumer (event, ACE_TRY_ENV);
@@ -41,7 +41,7 @@ TAO_EC_Reactive_Dispatching::push (TAO_EC_ProxyPushSupplier* proxy,
void
TAO_EC_Reactive_Dispatching::push_nocopy (TAO_EC_ProxyPushSupplier* proxy,
RtecEventComm::EventSet& event,
- TAO_EC_QOS_Info& qos_info,
+ TAO_EC_QOS_Info&,
CORBA::Environment& ACE_TRY_ENV)
{
proxy->reactive_push_to_consumer (event, ACE_TRY_ENV);
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp
index 1a968fd3591..5e6203834fb 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp
@@ -29,7 +29,7 @@ void
TAO_ECG_UDP_Sender::init (RtecEventChannelAdmin::EventChannel_ptr lcl_ec,
RtecUDPAdmin::AddrServer_ptr addr_server,
TAO_ECG_UDP_Out_Endpoint* endpoint,
- CORBA::Environment &TAO_IN_ENV)
+ CORBA::Environment &)
{
this->lcl_ec_ =
RtecEventChannelAdmin::EventChannel::_duplicate (lcl_ec);
@@ -648,7 +648,7 @@ TAO_ECG_UDP_Receiver::init (RtecEventChannelAdmin::EventChannel_ptr lcl_ec,
ACE_Reactor *reactor,
const ACE_Time_Value &expire_interval,
int max_timeout,
- CORBA::Environment &TAO_IN_ENV)
+ CORBA::Environment &)
{
this->ignore_from_ = ignore_from;
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp
index 396bb43f988..3984307b4d6 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_MT_Dispatching.cpp
@@ -13,7 +13,7 @@ TAO_EC_MT_Dispatching::TAO_EC_MT_Dispatching (int nthreads,
int thread_priority,
int force_activate)
: nthreads_ (nthreads),
- thread_creation_flags_ (thread_creation_flags_),
+ thread_creation_flags_ (thread_creation_flags),
thread_priority_ (thread_priority),
force_activate_ (force_activate),
task_ (&this->thread_manager_),
@@ -28,7 +28,7 @@ TAO_EC_MT_Dispatching::activate (void)
if (this->active_ != 0)
return;
-
+
this->active_ = 1;
if (this->task_.activate (this->thread_creation_flags_,
@@ -76,7 +76,7 @@ TAO_EC_MT_Dispatching::push (TAO_EC_ProxyPushSupplier* proxy,
void
TAO_EC_MT_Dispatching::push_nocopy (TAO_EC_ProxyPushSupplier* proxy,
RtecEventComm::EventSet& event,
- TAO_EC_QOS_Info& qos_info,
+ TAO_EC_QOS_Info&,
CORBA::Environment &ACE_TRY_ENV)
{
// Double checked locking....
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Null_Factory.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Null_Factory.cpp
index 71acd51ec2e..cc6c74d6ef8 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Null_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Null_Factory.cpp
@@ -109,7 +109,7 @@ TAO_EC_Null_Factory::destroy_proxy_push_consumer (TAO_EC_ProxyPushConsumer *x)
}
TAO_EC_Timeout_Generator*
-TAO_EC_Null_Factory::create_timeout_generator (TAO_EC_Event_Channel *ec)
+TAO_EC_Null_Factory::create_timeout_generator (TAO_EC_Event_Channel *)
{
// @@ TODO fixme
TAO_ORB_Core* orb_core = TAO_ORB_Core_instance ();
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp
index 3b99edfff07..012486f7628 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp
@@ -24,7 +24,7 @@ TAO_EC_ObserverStrategy::~TAO_EC_ObserverStrategy (void)
RtecEventChannelAdmin::Observer_Handle
TAO_EC_Null_ObserverStrategy::append_observer (
- RtecEventChannelAdmin::Observer_ptr obs,
+ RtecEventChannelAdmin::Observer_ptr,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((
CORBA::SystemException,
@@ -38,7 +38,7 @@ TAO_EC_Null_ObserverStrategy::append_observer (
void
TAO_EC_Null_ObserverStrategy::remove_observer (
- RtecEventChannelAdmin::Observer_Handle handle,
+ RtecEventChannelAdmin::Observer_Handle,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((
CORBA::SystemException,
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.cpp
index e2a90faecda..00f77ba6ea9 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_ProxyPushSupplier_Set.cpp
@@ -34,7 +34,7 @@ TAO_EC_ProxyPushSupplier_Set::connected_i (
void
TAO_EC_ProxyPushSupplier_Set::disconnected_i (
TAO_EC_ProxyPushSupplier *supplier,
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &)
{
if (this->all_suppliers_.remove (supplier) != 0)
return; // ACE_THROW (RtecEventChannelAdmin::EventChannel::SUBSCRIPTION_ERROR ());
@@ -43,7 +43,7 @@ TAO_EC_ProxyPushSupplier_Set::disconnected_i (
void
TAO_EC_ProxyPushSupplier_Set::shutdown_i (
- CORBA::Environment &ACE_TRY_ENV)
+ CORBA::Environment &)
{
SupplierSetIterator end = this->end ();
for (SupplierSetIterator i = this->begin (); i != end; ++i)
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp
index 77f15f3ea28..2258485e1de 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Timeout_Filter.cpp
@@ -72,17 +72,17 @@ TAO_EC_Timeout_Filter::push_to_proxy (const RtecEventComm::EventSet& event,
}
int
-TAO_EC_Timeout_Filter::filter (const RtecEventComm::EventSet& event,
- TAO_EC_QOS_Info& qos_info,
- CORBA::Environment& ACE_TRY_ENV)
+TAO_EC_Timeout_Filter::filter (const RtecEventComm::EventSet&,
+ TAO_EC_QOS_Info&,
+ CORBA::Environment&)
{
return 0;
}
int
-TAO_EC_Timeout_Filter::filter_nocopy (RtecEventComm::EventSet& event,
- TAO_EC_QOS_Info& qos_info,
- CORBA::Environment& ACE_TRY_ENV)
+TAO_EC_Timeout_Filter::filter_nocopy (RtecEventComm::EventSet&,
+ TAO_EC_QOS_Info&,
+ CORBA::Environment&)
{
return 0;
}
@@ -118,7 +118,7 @@ TAO_EC_Timeout_Filter::max_event_size (void) const
int
TAO_EC_Timeout_Filter::can_match (
- const RtecEventComm::EventHeader& header) const
+ const RtecEventComm::EventHeader&) const
{
return 0;
}