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

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


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

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