summaryrefslogtreecommitdiff
path: root/performance-tests/Sequence_Latency/Thread_Pool/Worker_Thread.cpp
blob: c1359a0c327ec6bc4748160638880334130fbfad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// $Id$
//
#include "Worker_Thread.h"

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

int
Worker_Thread::svc (void)
{
  try
    {
      this->orb_->run ();
    }
  catch (const CORBA::Exception&){}
  return 0;
}