summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/performance-tests/RTEvent/lib/ORB_Shutdown.inl
blob: 50b1d37411045ec0fce2ccdc186cdae8b4bb6ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// -*- C++ -*-

/**
 * @file ORB_Shutdown.inl
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@uci.edu>
 */

ACE_INLINE void
ORB_Shutdown::operator () (CORBA::ORB_ptr orb)
{
  ACE_DECLARE_NEW_ENV;
  ACE_TRY
    {
      orb->shutdown (0
                     ACE_ENV_ARG_PARAMETER);
    }
  ACE_CATCHANY { };
  ACE_ENDTRY;
}