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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// $Id$
#include "tao/Environment.h"
ACE_INLINE ACE_Lock &
TAO_POA_Manager::lock (void)
{
return this->lock_;
}
ACE_INLINE void
TAO_POA_Manager::activate (CORBA_Environment &ACE_TRY_ENV)
{
// Lock access to the POAManager for the duration of this transaction
TAO_POA_GUARD (ACE_Lock, monitor, this->lock ());
this->activate_i (ACE_TRY_ENV);
}
#if (TAO_HAS_MINIMUM_POA == 0)
ACE_INLINE void
TAO_POA_Manager::hold_requests (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV)
{
// Lock access to the POAManager for the duration of this transaction
TAO_POA_GUARD (ACE_Lock, monitor, this->lock ());
this->hold_requests_i (wait_for_completion, ACE_TRY_ENV);
}
ACE_INLINE void
TAO_POA_Manager::discard_requests (CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV)
{
// Lock access to the POAManager for the duration of this transaction
TAO_POA_GUARD (ACE_Lock, monitor, this->lock ());
this->discard_requests_i (wait_for_completion, ACE_TRY_ENV);
}
ACE_INLINE void
TAO_POA_Manager::deactivate (CORBA::Boolean etherealize_objects,
CORBA::Boolean wait_for_completion,
CORBA_Environment &ACE_TRY_ENV)
{
// Lock access to the POAManager for the duration of this transaction
TAO_POA_GUARD (ACE_Lock, monitor, this->lock ());
this->deactivate_i (etherealize_objects,
wait_for_completion,
ACE_TRY_ENV);
}
#endif /* TAO_HAS_MINIMUM_POA == 0 */
ACE_INLINE PortableServer::POAManager::State
TAO_POA_Manager::get_state_i (void)
{
return this->state_;
}
ACE_INLINE PortableServer::POAManager::State
TAO_POA_Manager::get_state (CORBA::Environment &ACE_TRY_ENV)
{
// Lock access to the POAManager for the duration of this transaction
TAO_POA_GUARD_RETURN (ACE_Lock, monitor, this->lock (), this->state_);
return this->get_state_i ();
}
|