summaryrefslogtreecommitdiff
path: root/TAO/tao/Reactive_Flushing_Strategy.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
commit97a7e757bb6e4415487770614266e114b2f3c3b7 (patch)
treea681f895cf5a9b8a4f7ab6603ee4fd3a55ca0305 /TAO/tao/Reactive_Flushing_Strategy.cpp
parente1e3a5aa98d33f78395624a2e57d173a8e738de6 (diff)
downloadATCD-97a7e757bb6e4415487770614266e114b2f3c3b7.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Reactive_Flushing_Strategy.cpp')
-rw-r--r--TAO/tao/Reactive_Flushing_Strategy.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/Reactive_Flushing_Strategy.cpp b/TAO/tao/Reactive_Flushing_Strategy.cpp
index ab76a31f168..085779f99ed 100644
--- a/TAO/tao/Reactive_Flushing_Strategy.cpp
+++ b/TAO/tao/Reactive_Flushing_Strategy.cpp
@@ -6,8 +6,8 @@
#include "tao/ORB_Core.h"
#include "tao/Queued_Message.h"
-ACE_RCSID (tao,
- Reactive_Flushing_Strategy,
+ACE_RCSID (tao,
+ Reactive_Flushing_Strategy,
"$Id$")
@@ -36,7 +36,7 @@ TAO_Reactive_Flushing_Strategy::flush_message (TAO_Transport *transport,
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
- TAO_ORB_Core *orb_core = transport->orb_core ();
+ TAO_ORB_Core * const orb_core = transport->orb_core ();
while (!msg->all_data_sent () && result >= 0)
{
@@ -60,11 +60,11 @@ TAO_Reactive_Flushing_Strategy::flush_transport (TAO_Transport *transport)
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
- TAO_ORB_Core *orb_core = transport->orb_core ();
+ TAO_ORB_Core * const orb_core = transport->orb_core ();
while (!transport->queue_is_empty ())
{
- int result = orb_core->run (0, 1 ACE_ENV_ARG_PARAMETER);
+ int const result = orb_core->run (0, 1 ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
if (result == -1)