summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/AMI_Latency/Server_Task.cpp
blob: 6df92f32a3f12a1b731296e98545649377539db2 (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
//
// $Id$
//
#include "Server_Task.h"

ACE_RCSID(AMI_Latency, Server_Task, "$Id$")

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

int
Server_Task::svc (void)
{
  ACE_DECLARE_NEW_CORBA_ENV;
  ACE_TRY
    {
      this->orb_->run (ACE_ENV_SINGLE_ARG_PARAMETER);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY {} ACE_ENDTRY;
  return 0;
}