summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/Thread_Pool/Worker_Thread.cpp
blob: 38ef68443e64175444a237ffa19703ce40684afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
}