summaryrefslogtreecommitdiff
path: root/trunk/CIAO/performance-tests/Benchmark/RoundTripServer/LatencyTest.cpp
blob: a3aed5e135f5500d727805de64f17d1aa4d71fba (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
26
//
// $Id$
//
#include "LatencyTest.h"
#include "CIAO_common.h"

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


CORBA::Long
LatencyTest_Impl::makeCall (CORBA::Long send_time)
{
  if (CIAO::debug_level () > 0)
    ACE_DEBUG ((LM_DEBUG, "Sending Time back \n"));

  return send_time;
}

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