summaryrefslogtreecommitdiff
path: root/ace/Future.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-03-17 22:30:34 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-03-17 22:30:34 +0000
commit23ec78401e35f9c73d914ae9902e9692ac971d76 (patch)
tree40cee593f36863941c5c27adadded7711e30dc9c /ace/Future.cpp
parente8812c5b3638b685b959ada38c5e0678b4bfc2d2 (diff)
downloadATCD-23ec78401e35f9c73d914ae9902e9692ac971d76.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Future.cpp')
-rw-r--r--ace/Future.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Future.cpp b/ace/Future.cpp
index 740afbb415c..02c789f7f8e 100644
--- a/ace/Future.cpp
+++ b/ace/Future.cpp
@@ -58,7 +58,7 @@ ACE_Future_Rep<T>::detach (ACE_Future_Rep<T>*& rep)
if (rep->ref_count_-- == 0)
{
- r_mon.release ();
+ ACE_MT (r_mon.release ());
// We do not need the lock when deleting the representation.
// There should be no side effects from deleting rep and we don
// not want to release a deleted mutex.
@@ -80,7 +80,7 @@ ACE_Future_Rep<T>::assign (ACE_Future_Rep<T>*& rep, ACE_Future_Rep<T>* new_rep)
// detached old last for exception safety
if (old->ref_count_-- == 0)
{
- r_mon.release ();
+ ACE_MT (r_mon.release ());
// We do not need the lock when deleting the representation.
// There should be no side effects from deleting rep and we don
// not want to release a deleted mutex.