4 * @author Will Otte <wotte@dre.vanderbilt.edu>
8 #include "tid_to_int.h"
9 #include "ace/Thread.h"
12 Bug1495_i::Bug1495_i (CORBA::ORB_ptr orb
)
13 : orb_ (CORBA::ORB::_duplicate (orb
))
17 Bug1495_i::~Bug1495_i (void)
22 Bug1495_i::get_thread_id (Bug1495_Regression::ThreadId_out thread_id
)
24 typedef Bug1495_Regression::ThreadId ThreadId
;
26 thread_id
= ACE_thread_t_to_integer
<ThreadId
> (ACE_Thread::self ());
30 Bug1495_i::shutdown (void)
33 "Shutting down orb %Q\n",
34 ACE_Thread::self ()));
38 this->orb_
->shutdown (false);