summaryrefslogtreecommitdiff
path: root/ACE/ace/RW_Mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/RW_Mutex.h')
-rw-r--r--ACE/ace/RW_Mutex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/RW_Mutex.h b/ACE/ace/RW_Mutex.h
index 1abed623c5f..b1c4bf331a7 100644
--- a/ACE/ace/RW_Mutex.h
+++ b/ACE/ace/RW_Mutex.h
@@ -92,7 +92,7 @@ public:
/**
* Note, for interface uniformity with other synchronization
- * wrappers we include the <tryacquire> method. This is implemented
+ * wrappers we include the tryacquire() method. This is implemented
* as a write-lock to be safe... Returns -1 on failure. If we
* "failed" because someone else already had the lock, @c errno is
* set to @c EBUSY.
@@ -115,11 +115,11 @@ protected:
/// Readers/writer lock.
ACE_rwlock_t lock_;
- /// Keeps track of whether <remove> has been called yet to avoid
- /// multiple <remove> calls, e.g., explicitly and implicitly in the
- /// destructor. This flag isn't protected by a lock, so make sure
+ /// Keeps track of whether remove() has been called yet to avoid
+ /// multiple remove() calls, e.g., explicitly and implicitly in the
+ /// destructor. This flag isn't protected by a lock, so make sure
/// that you don't have multiple threads simultaneously calling
- /// <remove> on the same object, which is a bad idea anyway...
+ /// remove() on the same object, which is a bad idea anyway...
bool removed_;
private: