summaryrefslogtreecommitdiff
path: root/trunk/CIAO/performance-tests/Benchmark/LatencyTest.cpp
blob: 2de09618b8f866f9877ec333fad82c9255bdcc7a (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 "LatencyTest.h"

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


CORBA::Long
LatencyTest::makeCall (CORBA::Long send_time)
{
  return send_time;
}

void
LatencyTest::shutdown ()
{
  this->orb_->shutdown (0);
}