summaryrefslogtreecommitdiff
path: root/ace/Condition_Thread_Mutex.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2005-02-15 23:07:37 +0000
committerSteve Huston <shuston@riverace.com>2005-02-15 23:07:37 +0000
commit34104cf059eeafbd1382ac7f9315e0c9a4afac2e (patch)
tree929cad045679537bffe42e0311c7d1ac90539359 /ace/Condition_Thread_Mutex.cpp
parent2cf1b9573c6f58e31ad17124620d11875cf8dab9 (diff)
downloadATCD-34104cf059eeafbd1382ac7f9315e0c9a4afac2e.tar.gz
Commit merged-in changes from mainlinePROACTOR_FIXES_STEVE_JAN05
Diffstat (limited to 'ace/Condition_Thread_Mutex.cpp')
-rw-r--r--ace/Condition_Thread_Mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Condition_Thread_Mutex.cpp b/ace/Condition_Thread_Mutex.cpp
index 0c50c0c0373..a04e2b30847 100644
--- a/ace/Condition_Thread_Mutex.cpp
+++ b/ace/Condition_Thread_Mutex.cpp
@@ -109,7 +109,7 @@ ACE_Condition_Thread_Mutex::wait (ACE_Thread_Mutex &mutex,
// ACE_TRACE ("ACE_Condition_Thread_Mutex::wait");
return ACE_OS::cond_timedwait (&this->cond_,
&mutex.lock_,
- (ACE_Time_Value *) abstime);
+ const_cast <ACE_Time_Value *> (abstime));
}
int