blob: e1221cb4a8261be75468eba8f7dccc54489108ea (
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
|
#include "Synch_Refcountable.h"
#if !defined (__ACE_INLINE__)
# include "Synch_Refcountable.inl"
#endif /* __ACE_INLINE__ */
#include "ace/Log_Msg.h"
ACE_RCSID (tao,
Synch_Refcountable,
"$Id$")
TAO_Synch_Refcountable::TAO_Synch_Refcountable (ACE_Lock *lock,
int refcount)
: ACE_Refcountable (refcount)
, refcount_lock_ (lock)
{
}
TAO_Synch_Refcountable::~TAO_Synch_Refcountable (void)
{
ACE_ASSERT (this->refcount_ == 0);
delete this->refcount_lock_;
}
|