blob: ad7ed5cb1e1f38a53bbf26f375770dc176628007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// -*- C++ -*-
/**
* @file test_i.cpp
* @author Will Otte <wotte@dre.vanderbilt.edu>
*/
#include "test_i.h"
#include "tid_to_int.h"
#include "ace/Thread.h"
Bug1495_i::Bug1495_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
Bug1495_i::~Bug1495_i (void)
{
}
void
Bug1495_i::get_thread_id (Bug1495_Regression::ThreadId_out thread_id)
{
typedef Bug1495_Regression::ThreadId ThreadId;
thread_id = ACE_thread_t_to_integer<ThreadId> (ACE_Thread::self ());
}
void
Bug1495_i::shutdown (void)
{
ACE_DEBUG ((LM_INFO,
"Shutting down orb %Q\n",
ACE_Thread::self ()));
this->_remove_ref ();
this->orb_->shutdown (false);
}
|