summaryrefslogtreecommitdiff
path: root/TAO/tao/Connection_Handler.cpp
diff options
context:
space:
mode:
authorhuangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-11 18:07:48 +0000
committerhuangh <huangh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-04-11 18:07:48 +0000
commitb73cdef9288bfcb88b45c1d320d377b03007d1b3 (patch)
tree991b03a4a95b1ed7c995b43398f71b7a7cd2c2f7 /TAO/tao/Connection_Handler.cpp
parent5be31b75376b2a62e9dbb60b2c179bea44f5e10e (diff)
downloadATCD-b73cdef9288bfcb88b45c1d320d377b03007d1b3.tar.gz
Thu Apr 11 18:03:24 UTC 2013 Huang-Ming Huang <huangh@ociweb.com>
Diffstat (limited to 'TAO/tao/Connection_Handler.cpp')
-rw-r--r--TAO/tao/Connection_Handler.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/TAO/tao/Connection_Handler.cpp b/TAO/tao/Connection_Handler.cpp
index 0030af8cb4b..ffc0280895d 100644
--- a/TAO/tao/Connection_Handler.cpp
+++ b/TAO/tao/Connection_Handler.cpp
@@ -64,7 +64,7 @@ TAO_Connection_Handler::set_socket_option (ACE_SOCK &sock,
sizeof (snd_size)) == -1)
{
if (TAO_debug_level)
- ACE_DEBUG ((LM_ERROR,
+ TAOLIB_DEBUG ((LM_ERROR,
ACE_TEXT ("TAO (%P|%t) - Connection_Handler::")
ACE_TEXT ("set_socket_option, setting SO_SNDBUF failed ")
ACE_TEXT ("'%m'\n")));
@@ -82,7 +82,7 @@ TAO_Connection_Handler::set_socket_option (ACE_SOCK &sock,
sizeof (int)) == -1)
{
if (TAO_debug_level)
- ACE_ERROR ((LM_ERROR,
+ TAOLIB_ERROR ((LM_ERROR,
ACE_TEXT ("TAO (%P|%t) - Connection_Handler::")
ACE_TEXT ("set_socket_option, setting SO_RCVBUF failed ")
ACE_TEXT ("'%m'\n")));
@@ -111,7 +111,7 @@ TAO_Connection_Handler::svc_i (void)
int result = 0;
if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
ACE_TEXT ("TAO (%P|%t) - Connection_Handler::svc_i begin\n")));
// Here we simply synthesize the "typical" event loop one might find
@@ -162,13 +162,13 @@ TAO_Connection_Handler::svc_i (void)
current_timeout = timeout;
if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler::svc_i - "
"loop <%d>\n", current_timeout.msec ()));
}
if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler::svc_i - end\n"));
return result;
@@ -226,7 +226,7 @@ TAO_Connection_Handler::handle_input_eh (ACE_HANDLE h, ACE_Event_Handler *eh)
if (!this->transport ()->wait_strategy ()->can_process_upcalls ())
{
if (TAO_debug_level > 6)
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::handle_input_eh, "
"not going to handle_input on transport "
"because upcalls temporarily suspended on this thread\n",
@@ -236,7 +236,7 @@ TAO_Connection_Handler::handle_input_eh (ACE_HANDLE h, ACE_Event_Handler *eh)
if (this->transport ()->wait_strategy ()->defer_upcall (eh) != 0)
{
if (TAO_debug_level > 5)
- ACE_ERROR ((LM_ERROR,
+ TAOLIB_ERROR ((LM_ERROR,
"TAO (%P|%t) - Connection_Handler[%d]::handle_input_eh, "
"Error deferring upcall handler[%d]\n",
this->transport ()->id (),
@@ -274,7 +274,7 @@ TAO_Connection_Handler::handle_input_internal (
if (TAO_debug_level > 6)
{
ACE_HANDLE const handle = eh->get_handle();
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::handle_input_internal, "
"handle = %d/%d\n",
t_id, handle, h));
@@ -300,7 +300,7 @@ TAO_Connection_Handler::handle_input_internal (
if (TAO_debug_level > 6)
{
ACE_HANDLE const handle = eh->get_handle ();
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::handle_input_internal, "
"handle = %d/%d, retval = %d\n",
t_id, handle, h, return_value));
@@ -330,7 +330,7 @@ TAO_Connection_Handler::close_connection_eh (ACE_Event_Handler *eh)
size_t const id = this->transport ()->id ();
if (TAO_debug_level)
{
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::"
"close_connection_eh, purging entry from cache\n",
handle));
@@ -358,7 +358,7 @@ TAO_Connection_Handler::close_connection_eh (ACE_Event_Handler *eh)
if (TAO_debug_level)
{
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::"
"close_connection_eh, removing from the reactor\n",
handle));
@@ -382,7 +382,7 @@ TAO_Connection_Handler::close_connection_eh (ACE_Event_Handler *eh)
// buffering
if (TAO_debug_level)
{
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::"
"close_connection_eh, cancel all timers\n",
handle));
@@ -407,7 +407,7 @@ TAO_Connection_Handler::close_connection_eh (ACE_Event_Handler *eh)
if (TAO_debug_level)
{
- ACE_DEBUG ((LM_DEBUG,
+ TAOLIB_DEBUG ((LM_DEBUG,
"TAO (%P|%t) - Connection_Handler[%d]::"
"close_connection_eh end\n",
id));