diff options
author | Phil Mesnier <mesnier_p@ociweb.com> | 2006-09-25 23:10:36 +0000 |
---|---|---|
committer | Phil Mesnier <mesnier_p@ociweb.com> | 2006-09-25 23:10:36 +0000 |
commit | 64ad1fa532363a5660c165c68cd2298b74d213be (patch) | |
tree | 64ebc57fbe442ae08f51332a30fe99d51b970a75 /TAO/tao/IIOP_Connection_Handler.cpp | |
parent | d1d1dc3e3f528e0142715d286de668a6565db4b4 (diff) | |
download | ATCD-64ad1fa532363a5660c165c68cd2298b74d213be.tar.gz |
ChangeLog tag: Mon Sep 25 22:27:24 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'TAO/tao/IIOP_Connection_Handler.cpp')
-rw-r--r-- | TAO/tao/IIOP_Connection_Handler.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/TAO/tao/IIOP_Connection_Handler.cpp b/TAO/tao/IIOP_Connection_Handler.cpp index b910fc091e2..418a5dfd87b 100644 --- a/TAO/tao/IIOP_Connection_Handler.cpp +++ b/TAO/tao/IIOP_Connection_Handler.cpp @@ -63,7 +63,16 @@ TAO_IIOP_Connection_Handler::TAO_IIOP_Connection_Handler (TAO_ORB_Core *orb_core TAO_IIOP_Connection_Handler::~TAO_IIOP_Connection_Handler (void) { delete this->transport (); - this->release_os_resources(); + int const result = + this->release_os_resources (); + + if (result == -1 && TAO_debug_level) + { + ACE_ERROR ((LM_ERROR, + ACE_TEXT("TAO (%P|%t) - IIOP_Connection_Handler::") + ACE_TEXT("~IIOP_Connection_Handler, ") + ACE_TEXT("release_os_resources() failed %m\n"))); + } } /* Copy hook that copies over the concrete methods from this class |