summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl4
1 files changed, 0 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl b/TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl
index 08b866de338..d9fcdb2975d 100644
--- a/TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl
+++ b/TAO/orbsvcs/orbsvcs/Metrics/Metrics_UpcallMonitor_T.inl
@@ -152,7 +152,6 @@ push (const RtecEventComm::EventSet & data,
// Push to the actual consumer.
consumer_.push (data, ACE_TRY_ENV);
- ACE_CHECK;
// Record the end of the upcall in the cache, and report whether
// the deadline was made or missed to the monitor.
@@ -170,12 +169,10 @@ push (const RtecEventComm::EventSet & data,
if (result == 0)
{
monitor_.report_made_deadline (this->handle_, ACE_TRY_ENV);
- ACE_CHECK;
}
else if (result == 1)
{
monitor_.report_missed_deadline (this->handle_, ACE_TRY_ENV);
- ACE_CHECK;
}
# if defined (METRICS_MONITOR_ERROR_OUTPUT_ENABLED)
else
@@ -203,7 +200,6 @@ push (const RtecEventComm::EventSet & data,
// the cache and the missed deadline to the monitor.
cache_.report_upcall_cancellation (this->handle_);
monitor_.report_missed_deadline (this->handle_, ACE_TRY_ENV);
- ACE_CHECK;
}
}