diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-26 13:44:17 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-26 13:44:17 +0000 |
commit | cc732cdf249e9cb91ed81d2eed89746a148072df (patch) | |
tree | f0df67d51027757f77ee29d3d0db8dc7dcc21746 /TAO/tao/Acceptor_Impl.cpp | |
parent | 2a0287555ab1f320bd9636b15f8fc589ecdc5f99 (diff) | |
download | ATCD-cc732cdf249e9cb91ed81d2eed89746a148072df.tar.gz |
ChangeLogTag: Thu Aug 26 08:43:11 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Acceptor_Impl.cpp')
-rw-r--r-- | TAO/tao/Acceptor_Impl.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/TAO/tao/Acceptor_Impl.cpp b/TAO/tao/Acceptor_Impl.cpp index fa123ff5473..defa5115d64 100644 --- a/TAO/tao/Acceptor_Impl.cpp +++ b/TAO/tao/Acceptor_Impl.cpp @@ -28,6 +28,7 @@ #include "tao/Server_Strategy_Factory.h" #include "tao/Connector_Registry.h" #include "tao/debug.h" +#include "ace/Object_Manager.h" #if !defined(__ACE_INLINE__) #include "tao/Acceptor_Impl.i" @@ -133,9 +134,9 @@ TAO_Accept_Strategy<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::out_of_sockets_handler (v // connection cache maintained by the connectors in the // connector registry. if (TAO_debug_level > 0) - ACE_DEBUG ((LM_DEBUG, + ACE_DEBUG ((LM_DEBUG, "Purging connections from Connectors in Connector Registry of all ORBs...\n")); - + ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, guard, *ACE_Static_Object_Lock::instance (), 0)); @@ -152,10 +153,10 @@ TAO_Accept_Strategy<SVC_HANDLER, ACE_PEER_ACCEPTOR_2>::out_of_sockets_handler (v if (result != 0) return result; } - + return 0; } - + return -1; } |