blob: 04fe4aa0fa49b3187aa38a9a92effe1fca0205d5 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#ifndef TAO_CONDITION_CPP
#define TAO_CONDITION_CPP
#include "tao/Condition.h"
#include "tao/debug.h"
#if !defined (__ACE_INLINE__)
# include "tao/Condition.inl"
#endif /* __ACE_INLINE__ */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template <class MUTEX>
TAO_Condition<MUTEX>::TAO_Condition (MUTEX &m)
: mutex_ (&m),
delete_lock_ (false),
cond_ (nullptr)
{
// @todo: Need to add the allocatore here..
ACE_NEW (this->cond_,
TAO_SYNCH_CONDITION (*this->mutex_));
}
template <class MUTEX>
TAO_Condition<MUTEX>::TAO_Condition (void)
: mutex_ (nullptr),
delete_lock_ (false),
cond_ (nullptr)
{
// @todo: Need to add the allocatore here..
ACE_NEW (this->mutex_,
MUTEX);
this->delete_lock_ = true;
ACE_NEW (this->cond_,
TAO_SYNCH_CONDITION (*this->mutex_));
}
template <class MUTEX>
TAO_Condition<MUTEX>::~TAO_Condition (void)
{
if (this->remove () == -1)
TAOLIB_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("TAO_Condition::~TAO_Condition")));
delete this->cond_;
if (this->delete_lock_)
delete this->mutex_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_CONDITION_CPP */
|