ACE+TAO-7_0_8
[ACE_TAO.git] / TAO / tests / Client_Leaks / Process.cpp
blob1c6fb507e198d6b92324c284fc25151796f11b39
1 #include "Process.h"
2 #include "ace/OS_NS_unistd.h"
4 Process::Process (CORBA::ORB_ptr orb)
5 : orb_ (CORBA::ORB::_duplicate (orb))
9 CORBA::Long
10 Process::get_process_id (void)
12 return ACE_OS::getpid ();
15 void
16 Process::shutdown (void)
18 this->orb_->shutdown (false);