summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-17 13:32:28 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-17 13:32:28 +0000
commit371fae1f5aaf6123b24334fa7ddba34dc732a998 (patch)
tree1db54419be26cd478c14ed47cb8ac2561e76f61c /ace
parent3ca4c2548a307afe0931a03f0eb8aab9a112310f (diff)
downloadATCD-371fae1f5aaf6123b24334fa7ddba34dc732a998.tar.gz
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r--ace/Synch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Synch.cpp b/ace/Synch.cpp
index f79179b226e..96b9e2813b6 100644
--- a/ace/Synch.cpp
+++ b/ace/Synch.cpp
@@ -668,7 +668,7 @@ ACE_Condition_Thread_Mutex::wait (ACE_Thread_Mutex &mutex,
{
// ACE_TRACE ("ACE_Condition<MUTEX>::wait");
if (abstime == 0)
- return this->wait ();
+ return ACE_OS::cond_wait (&this->cond_, &mutex_.lock_);
else
return ACE_OS::cond_timedwait (&this->cond_,
&mutex.lock_,