summaryrefslogtreecommitdiff
path: root/TAO/tao/Typecode.i
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-02 02:32:10 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-02 02:32:10 +0000
commit46b68f8886267752e21240d0d2a38aff51b08cb4 (patch)
treee6c4cb63722c260d6c229f938dc9a28800bf50ae /TAO/tao/Typecode.i
parent3b90547b819834d830be139f52dbbd436b561bbd (diff)
downloadATCD-46b68f8886267752e21240d0d2a38aff51b08cb4.tar.gz
ChangeLogTag: Thu Feb 1 20:29:54 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Typecode.i')
-rw-r--r--TAO/tao/Typecode.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Typecode.i b/TAO/tao/Typecode.i
index 8f78b625b86..bee69e76c59 100644
--- a/TAO/tao/Typecode.i
+++ b/TAO/tao/Typecode.i
@@ -4,7 +4,7 @@
ACE_INLINE CORBA::ULong
CORBA_TypeCode::_incr_refcnt (void)
{
- ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, guard, this->refcount_lock_, 0);
+ ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, guard, this->refcount_lock_, 0);
return this->refcount_++;
}
@@ -12,7 +12,7 @@ ACE_INLINE CORBA::ULong
CORBA_TypeCode::_decr_refcnt (void)
{
{
- ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, guard, this->refcount_lock_, 0);
+ ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, guard, this->refcount_lock_, 0);
this->refcount_--;
if (this->refcount_ != 0)
return this->refcount_;