summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/Cond.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/IceUtil/Cond.h')
-rw-r--r--cpp/include/IceUtil/Cond.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/Cond.h b/cpp/include/IceUtil/Cond.h
index b3274c77464..6d3fabfdcff 100644
--- a/cpp/include/IceUtil/Cond.h
+++ b/cpp/include/IceUtil/Cond.h
@@ -175,6 +175,9 @@ private:
}
*/
+ //
+ // TODO: Should not be inlined, not performance critical.
+ //
void
waitImpl(const RecMutex& mutex) const
{
@@ -195,6 +198,9 @@ private:
}
}
+ //
+ // TODO: Should not be inlined, not performance critical.
+ //
void
waitImpl(const Mutex& mutex) const
{
@@ -215,6 +221,9 @@ private:
}
}
+ //
+ // TODO: Should not be inlined, not performance critical.
+ //
bool
timedwaitImpl(const RecMutex& mutex, long msec) const
{
@@ -236,6 +245,9 @@ private:
}
}
+ //
+ // TODO: Should not be inlined, not performance critical.
+ //
bool
timedwaitImpl(const Mutex& mutex, long msec) const
{