summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-23 19:33:49 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-23 19:33:49 +0000
commite4a47e549ec562d26d9b59490cf673241b9b4f5d (patch)
treeaeec5f410e81bd41ba2abb3175125cde393924fa
parent0696d80e577e4e8d6a6254a4986488174b0b790d (diff)
downloadATCD-e4a47e549ec562d26d9b59490cf673241b9b4f5d.tar.gz
updated template instantiations to match recent change to
Server_Logging_Handler_T.h.
-rw-r--r--netsvcs/lib/Server_Logging_Handler.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/netsvcs/lib/Server_Logging_Handler.cpp b/netsvcs/lib/Server_Logging_Handler.cpp
index 262c2352610..7f873fea877 100644
--- a/netsvcs/lib/Server_Logging_Handler.cpp
+++ b/netsvcs/lib/Server_Logging_Handler.cpp
@@ -100,7 +100,9 @@ template class ACE_Server_Logging_Handler<Synch_Receiver>;
template class ACE_Thr_Server_Logging_Handler<Synch_Receiver>;
#if defined (ACE_HAS_TLI)
- template class ACE_Svc_Handler<LOGGING_PEER_STREAM, ACE_NULL_SYNCH>;
+ // NOTE: The following line is not used with the #if 1 // !defined
+ // (ACE_HAS_TLI) override in Server_Logging_Handler_T.h:
+ // template class ACE_Svc_Handler<LOGGING_PEER_STREAM, ACE_NULL_SYNCH>;
// else if ! ACE_HAS_TLI, LOGGING_PEER_STREAM is ACE_SOCK_STREAM,
// and the specialization would be
// template class ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>;
@@ -192,7 +194,9 @@ template class ACE_Thr_Server_Logging_Handler<Synch_Receiver>;
#pragma instantiate ACE_Thr_Server_Logging_Handler<Synch_Receiver>
#if defined (ACE_HAS_TLI)
- #pragma instantiate ACE_Svc_Handler<LOGGING_PEER_STREAM, ACE_NULL_SYNCH>
+ // NOTE: The following line is not used with the #if 1 // !defined
+ // (ACE_HAS_TLI) override in Server_Logging_Handler_T.h:
+ // #pragma instantiate ACE_Svc_Handler<LOGGING_PEER_STREAM, ACE_NULL_SYNCH>
// else if ! ACE_HAS_TLI, LOGGING_PEER_STREAM is ACE_SOCK_STREAM,
// and the specialization would be
// #pragma instantiate ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
@@ -201,4 +205,3 @@ template class ACE_Thr_Server_Logging_Handler<Synch_Receiver>;
#endif /* ACE_HAS_TLI */
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
#endif /* ACE_SERVER_LOGGING_HANDLER_C */
-