summaryrefslogtreecommitdiff
path: root/trunk/TAO/performance-tests/Latency/AMI/Server_Task.cpp
blob: 157dbe15c4f0416e4154485681a4898cc07c714d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// $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)
{
  try
    {
      this->orb_->run ();
    }
  catch (const CORBA::Exception&){}
  return 0;
}