diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-20 14:45:21 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-20 14:45:21 +0000 |
commit | 40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf (patch) | |
tree | c745857a4dc22808006e1aca3f01c27090ad88ac /cpp/src/IceUtil/Cond.cpp | |
parent | Added preliminary implementation of timed read/write trylock for (diff) | |
download | ice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.tar.bz2 ice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.tar.xz ice-40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf.zip |
BusyException; naming fixes
Diffstat (limited to 'cpp/src/IceUtil/Cond.cpp')
-rw-r--r-- | cpp/src/IceUtil/Cond.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/Cond.cpp b/cpp/src/IceUtil/Cond.cpp index 476e936295e..c08559d8d28 100644 --- a/cpp/src/IceUtil/Cond.cpp +++ b/cpp/src/IceUtil/Cond.cpp @@ -122,7 +122,7 @@ IceUtil::Cond::preWait() const } void -IceUtil::Cond::postWait(bool timedout) const +IceUtil::Cond::postWait(bool timedOut) const { _internal.lock(); _unblocked++; @@ -132,7 +132,7 @@ IceUtil::Cond::postWait(bool timedout) const bool last = --_toUnblock == 0; _internal.unlock(); - if (timedout) + if (timedOut) { _queue.wait(); } |