summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Connect.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-12 21:37:48 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-12-12 21:37:48 +0000
commitf18613e918d42d5a3c9cb6bf217ade6027224aa2 (patch)
tree9f95f89d56f67059b483c6cde8bf464caa9c4eda /TAO/tao/IIOP_Connect.cpp
parent70788645e2d085064f89174248b48b42bf3f698e (diff)
downloadATCD-f18613e918d42d5a3c9cb6bf217ade6027224aa2.tar.gz
ChangeLogTag: Sat Dec 12 15:15:00 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/IIOP_Connect.cpp')
-rw-r--r--TAO/tao/IIOP_Connect.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/TAO/tao/IIOP_Connect.cpp b/TAO/tao/IIOP_Connect.cpp
index bb3f62fe0ae..61011b46860 100644
--- a/TAO/tao/IIOP_Connect.cpp
+++ b/TAO/tao/IIOP_Connect.cpp
@@ -142,7 +142,7 @@ TAO_IIOP_Server_Connection_Handler::open (void*)
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP connection from client <%s> on %d\n",
+ ASYS_TEXT ("TAO (%P|%t) IIOP connection from client <%s> on %d\n"),
client, this->peer ().get_handle ()));
return 0;
@@ -162,8 +162,8 @@ TAO_IIOP_Server_Connection_Handler::activate (long flags,
{
if (TAO_orbdebug)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Server_Connection_Handler::activate %d "
- "threads, flags = %d\n",
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Server_Connection_Handler::activate %d ")
+ ASYS_TEXT ("threads, flags = %d\n"),
n_threads,
flags,
THR_BOUND));
@@ -186,8 +186,8 @@ TAO_IIOP_Server_Connection_Handler::handle_close (ACE_HANDLE handle,
{
if (TAO_orbdebug)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Server_Connection_Handler::handle_close "
- "(%d, %d)\n",
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Server_Connection_Handler::handle_close ")
+ ASYS_TEXT ("(%d, %d)\n"),
handle,
rm));
@@ -211,7 +211,7 @@ TAO_IIOP_Server_Connection_Handler::svc (void)
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Server_Connection_Handler::svc begin\n"));
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Server_Connection_Handler::svc begin\n")));
// Here we simply synthesize the "typical" event loop one might find
// in a reactive handler, except that this can simply block waiting
@@ -239,13 +239,13 @@ TAO_IIOP_Server_Connection_Handler::svc (void)
current_timeout = timeout;
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Server_Connection_Handler::svc - "
- "loop <%d>\n", current_timeout.msec ()));
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Server_Connection_Handler::svc - ")
+ ASYS_TEXT ("loop <%d>\n"), current_timeout.msec ()));
}
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Server_Connection_Handler::svc end\n"));
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Server_Connection_Handler::svc end\n")));
return result;
}
@@ -270,9 +270,9 @@ TAO_IIOP_Server_Connection_Handler::handle_input_i (ACE_HANDLE,
if (result == -1 && TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) - %p\n",
- "IIOP_Server_Connection_Handler::handle_input, "
- "handle_input"));
+ ASYS_TEXT ("TAO (%P|%t) - %p\n"),
+ ASYS_TEXT ("IIOP_Server_Connection_Handler::handle_input, ")
+ ASYS_TEXT ("handle_input")));
}
if (result == 0 || result == -1)
@@ -382,7 +382,7 @@ TAO_IIOP_Client_Connection_Handler::open (void *)
(void *) &nodelay,
sizeof (nodelay)) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "NODELAY failed\n"),
+ ASYS_TEXT ("NODELAY failed\n")),
-1);
#endif /* TCP_NODELAY */
@@ -404,7 +404,7 @@ TAO_IIOP_Client_Connection_Handler::open (void *)
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP connection to server <%s> on %d\n",
+ ASYS_TEXT ("TAO (%P|%t) IIOP connection to server <%s> on %d\n"),
server, this->peer ().get_handle ()));
// Register the handler with the Reactor if necessary.
@@ -453,8 +453,8 @@ TAO_IIOP_Client_Connection_Handler::handle_close (ACE_HANDLE handle,
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Client_Connection_Handler::"
- "handle_close (%d, %d)\n", handle, rm));
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Client_Connection_Handler::")
+ ASYS_TEXT ("handle_close (%d, %d)\n"), handle, rm));
if (this->recycler ())
this->recycler ()->mark_as_closed (this->recycling_act ());
@@ -476,8 +476,8 @@ TAO_IIOP_Client_Connection_Handler::handle_close_i (ACE_HANDLE handle,
if (TAO_debug_level > 0)
ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) IIOP_Client_Connection_Handler::"
- "handle_close_i (%d, %d)\n", handle, rm));
+ ASYS_TEXT ("TAO (%P|%t) IIOP_Client_Connection_Handler::")
+ ASYS_TEXT ("handle_close_i (%d, %d)\n"), handle, rm));
if (this->recycler ())
this->recycler ()->mark_as_closed_i (this->recycling_act ());