summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-12-18 08:48:40 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-12-18 08:48:40 +0000
commit1fdaf50d7381441815f307a13de250ae64754e9a (patch)
treec31af5a169d3e3e436248ae6c0672cf08e8fe0ba /cpp
parent*** empty log message *** (diff)
downloadice-1fdaf50d7381441815f307a13de250ae64754e9a.tar.bz2
ice-1fdaf50d7381441815f307a13de250ae64754e9a.tar.xz
ice-1fdaf50d7381441815f307a13de250ae64754e9a.zip
Fixed tryLock() comment
Diffstat (limited to 'cpp')
-rw-r--r--cpp/include/IceUtil/RecMutex.h3
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;