summaryrefslogtreecommitdiff
path: root/modules/CIAO/performance-tests/Benchmark/RoundTripServer/LatencyTest.cpp
blob: 148ee21df79981a8b1be46f7c45991c60d927f22 (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
25
//
// $Id$
//
#include "LatencyTest.h"
#include "ciao/Logger/Log_Macros.h"

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


CORBA::Long
LatencyTest_Impl::makeCall (CORBA::Long send_time)
{
  CIAO_DEBUG ((LM_DEBUG, CLINFO"Sending Time back\n"));

  return send_time;
}

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