summaryrefslogtreecommitdiff
path: root/ACE/ace/Condition_Thread_Mutex.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-03-22 19:39:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-03-22 19:39:54 +0000
commita03bc0928993027f9c77a63d40db6276e470352c (patch)
treec423deeac6b4c4336e39beb407c7ad3ee1989893 /ACE/ace/Condition_Thread_Mutex.cpp
parent9a618d3733b212a4aa3bbf2e96762fec6a832939 (diff)
downloadATCD-a03bc0928993027f9c77a63d40db6276e470352c.tar.gz
Thu Mar 22 19:38:02 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Condition_Thread_Mutex.cpp')
-rw-r--r--ACE/ace/Condition_Thread_Mutex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Condition_Thread_Mutex.cpp b/ACE/ace/Condition_Thread_Mutex.cpp
index d7aa83f9b6f..9f341090567 100644
--- a/ACE/ace/Condition_Thread_Mutex.cpp
+++ b/ACE/ace/Condition_Thread_Mutex.cpp
@@ -46,7 +46,7 @@ ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex (const ACE_Thread_Mutex &
const ACE_TCHAR *name,
void *arg)
: mutex_ ((ACE_Thread_Mutex &) m),
- removed_ (0)
+ removed_ (false)
{
// ACE_TRACE ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex");
if (ACE_OS::cond_init (&this->cond_,
@@ -64,7 +64,7 @@ ACE_Condition_Thread_Mutex (const ACE_Thread_Mutex &m,
const ACE_TCHAR *name,
void *arg)
: mutex_ ((ACE_Thread_Mutex &) m),
- removed_ (0)
+ removed_ (false)
{
// ACE_TRACE ("ACE_Condition_Thread_Mutex::ACE_Condition_Thread_Mutex");
if (ACE_OS::cond_init (&this->cond_, attributes.attributes_,