summaryrefslogtreecommitdiff
path: root/trunk/TAO/performance-tests/Memory/Single_Threaded/Memory_Growth.cpp
blob: f8ef0317e3e413da5528b4ffcb485d5c115f130c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// $Id$
//
#include "Memory_Growth.h"

ACE_RCSID(Hello, Hello, "$Id$")

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

void
Memory_Growth::ping (void)
{
  return;
}

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