Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3672_Regression / ami_test_i.cpp
blob15bac8f35a5325bd7bee576b0d47fccc2bddb7dc
2 //=============================================================================
3 /**
4 * @file ami_test_i.cpp
6 * Implementation of the AMI Test interface.
8 * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
9 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
11 //=============================================================================
14 #include "ami_test_i.h"
15 #include "tao/debug.h"
16 #include "ace/OS_NS_unistd.h"
18 AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb)
19 : orb_ (CORBA::ORB::_duplicate (orb))
23 CORBA::Long
24 AMI_Test_i::foo (CORBA::Long_out out_l)
26 out_l = 931233;
28 ACE_OS::sleep (10);
30 return 931234;
33 void
34 AMI_Test_i::shutdown (void)
36 ACE_OS::sleep (5);
38 this->orb_->shutdown (0);