Merge pull request #2218 from jwillemsen/jwi-pthreadsigmask
[ACE_TAO.git] / TAO / tao / Utils / ORB_Destroyer.cpp
blob337c05945125f58d94b1ed2ae548bb80c4f75375
1 #include "tao/Utils/ORB_Destroyer.h"
3 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
5 void
6 TAO::Utils::ORB_Destroyer_Functor::operator() (CORBA::ORB_ptr orb) noexcept
8 try
10 orb->destroy ();
12 catch (...)
14 // @@ Cannot let exceptions escape, yet we need to log them!
18 TAO_END_VERSIONED_NAMESPACE_DECL