summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1020_Regression/ORB_Task.cpp
blob: 86bdeedf8b37c4019d0388eaa3349e96ef321e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * @file ORB_Task.cpp
 *
 * $Id$
 *
 * @author Carlos O'Ryan <coryan@atdesk.com>
 *
 */
#include "ORB_Task.h"
#include "tao/Environment.h"

ACE_RCSID(Bug_1230_Regression, ORB_Task, "$Id$")

ORB_Task::ORB_Task(CORBA::ORB_ptr orb)
  : orb_(CORBA::ORB::_duplicate(orb))
{
}

int
ORB_Task::svc (void)
{
  ACE_DECLARE_NEW_CORBA_ENV;
  ACE_TRY
    {
      this->orb_->run(ACE_ENV_SINGLE_ARG_PARAMETER);
      ACE_TRY_CHECK;
    }
  ACE_CATCH(CORBA::Exception, ex)
    {
    }
  ACE_ENDTRY;
  return 0;
}