diff options
author | Marc Laukien <marc@zeroc.com> | 2002-02-12 04:59:12 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-02-12 04:59:12 +0000 |
commit | e764b6d2adc5a0ef75caf1f6f406af86bd95aa1c (patch) | |
tree | 1136dc7e95fc1d36b509f50a9b87a1c04179a576 /cpp/include/IceUtil/Cond.h | |
parent | made some inline ops non-inline; added comments and TODOs (diff) | |
download | ice-e764b6d2adc5a0ef75caf1f6f406af86bd95aa1c.tar.bz2 ice-e764b6d2adc5a0ef75caf1f6f406af86bd95aa1c.tar.xz ice-e764b6d2adc5a0ef75caf1f6f406af86bd95aa1c.zip |
made some inline ops non-inline; added comments and TODOs
Diffstat (limited to 'cpp/include/IceUtil/Cond.h')
-rw-r--r-- | cpp/include/IceUtil/Cond.h | 12 |
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 { |