summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport.cpp
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-07-25 03:35:36 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-07-25 03:35:36 +0000
commit2cc9c793bc1b3d741a2245af859c25637b6a73a9 (patch)
treeeb5a830c666bd286afde519d3043f3e4cfb589b0 /TAO/tao/Transport.cpp
parent81f3ac6b11d2a37644994029e6d4b3b67d33fe3e (diff)
downloadATCD-bug_1125_stage_0.tar.gz
ChangeLogTag: Wed Jul 24 22:30:29 2002 Balachandran Natarajan <bala@cs.wustl.edu>bug_1125_stage_0
Diffstat (limited to 'TAO/tao/Transport.cpp')
-rw-r--r--TAO/tao/Transport.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/TAO/tao/Transport.cpp b/TAO/tao/Transport.cpp
index fe3308ef812..6377f1ba14d 100644
--- a/TAO/tao/Transport.cpp
+++ b/TAO/tao/Transport.cpp
@@ -612,8 +612,14 @@ TAO_Transport::send_reply_message_i (const ACE_Message_Block *mb,
ACE_ASSERT (n == 0);
- ACE_DEBUG ((LM_DEBUG,
- "(%P|%t) Going to queue and leave \n"));
+ if (TAO_debug_level > 3)
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ "TAO (%P|%t) - Transport[%d]::send_reply_message_i, "
+ "preparing to add to queue before leaving \n",
+ this->id ()));
+ }
+
// Till this point we shouldnt have any copying and that is the
// point anyway. Now, remove the node from the list
synch_message.remove_from_list (this->head_,
@@ -632,9 +638,6 @@ TAO_Transport::send_reply_message_i (const ACE_Message_Block *mb,
(void) flushing_strategy->schedule_output (this);
- // @@todo: Not sure at this point what will happen if the transport
- // get destroyed in between...
-
return 1;
}