summaryrefslogtreecommitdiff
path: root/ACE/TAO/performance-tests/POA/Demux/demux_test_client.inl
blob: 9c1a895f20b984bd6dff00f756e4985b76c4c62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//$Id$
static void M302 (Demux_Test_ptr objref)
{
  objref->M302 ();
}

//FUZZ: disable check_for_lack_ACE_OS
static void shutdown (Demux_Test_ptr objref)
{
  objref->shutdown ();
}
//FUZZ: enable check_for_lack_ACE_OS

int Demux_Test_Client::init_operation_db (void)
{
   this->op_db_[0].op_ = M302;
   this->op_db_[1].op_ = shutdown;
   return 0;
}