diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-18 08:48:40 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-18 08:48:40 +0000 |
commit | 1fdaf50d7381441815f307a13de250ae64754e9a (patch) | |
tree | c31af5a169d3e3e436248ae6c0672cf08e8fe0ba /cpp | |
parent | *** empty log message *** (diff) | |
download | ice-1fdaf50d7381441815f307a13de250ae64754e9a.tar.bz2 ice-1fdaf50d7381441815f307a13de250ae64754e9a.tar.xz ice-1fdaf50d7381441815f307a13de250ae64754e9a.zip |
Fixed tryLock() comment
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/IceUtil/RecMutex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/RecMutex.h b/cpp/include/IceUtil/RecMutex.h index 07b6b433c86..ef0a145fc14 100644 --- a/cpp/include/IceUtil/RecMutex.h +++ b/cpp/include/IceUtil/RecMutex.h @@ -46,7 +46,8 @@ public: void lock() const; // - // Returns true if the lock was acquired, and false otherwise. + // Returns true if the lock was acquired or was already acquired + // by the calling thread, and false otherwise. // bool tryLock() const; |