summaryrefslogtreecommitdiff
path: root/TAO/tao/Condition.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-08-02 08:41:23 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-08-02 08:41:23 +0000
commit8063eeaf31f757d8b7cab6fbd96e4be730cd2fa3 (patch)
tree5379682e0ab88839cc4feb945516522aa907bde6 /TAO/tao/Condition.cpp
parented026272efed6c117db64467e2643b0ed68a0770 (diff)
downloadATCD-8063eeaf31f757d8b7cab6fbd96e4be730cd2fa3.tar.gz
Thu Aug 2 08:39:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Condition.cpp')
-rw-r--r--TAO/tao/Condition.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Condition.cpp b/TAO/tao/Condition.cpp
index 06e17912045..09f7cb1b5b2 100644
--- a/TAO/tao/Condition.cpp
+++ b/TAO/tao/Condition.cpp
@@ -19,7 +19,7 @@ TAO_Condition<MUTEX>::TAO_Condition (MUTEX &m)
delete_lock_ (0),
cond_ (0)
{
- // @@todo: Need to add the allocatore here..
+ // @todo: Need to add the allocatore here..
ACE_NEW (this->cond_,
TAO_SYNCH_CONDITION (*this->mutex_));
}
@@ -31,7 +31,7 @@ TAO_Condition<MUTEX>::TAO_Condition (void)
cond_ (0)
{
- // @@todo: Need to add the allocatore here..
+ // @todo: Need to add the allocatore here..
ACE_NEW (this->mutex_,
MUTEX);