summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-11-30 18:12:36 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-11-30 18:12:36 +0100
commitcec147c4573f9ad41e4840d6e53e4980a93bff67 (patch)
tree01142d2651138cb7cc88ae3221820fe2fdc7982a
parent0050aa1d8e010452160928c1de24c8ed8e31ba84 (diff)
downloadATCD-cec147c4573f9ad41e4840d6e53e4980a93bff67.tar.gz
Doxygen improvements
* ACE/ace/Condition_Thread_Mutex.h:
-rw-r--r--ACE/ace/Condition_Thread_Mutex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Condition_Thread_Mutex.h b/ACE/ace/Condition_Thread_Mutex.h
index 6ba91871e1a..0c40993020c 100644
--- a/ACE/ace/Condition_Thread_Mutex.h
+++ b/ACE/ace/Condition_Thread_Mutex.h
@@ -76,9 +76,9 @@ public:
/**
* Block on condition, or until absolute time-of-day has passed. If
- * abstime == 0 use "blocking" <wait> semantics. Else, if @a abstime
+ * abstime == 0 use "blocking" wait semantics. Else, if @a abstime
* != 0 and the call times out before the condition is signaled
- * <wait> returns -1 and sets errno to ETIME.
+ * wait() returns -1 and sets errno to ETIME.
*/
int wait (const ACE_Time_Value *abstime);
@@ -117,11 +117,11 @@ protected:
/// Reference to mutex lock.
ACE_Thread_Mutex &mutex_;
- /// Keeps track of whether <remove> has been called yet to avoid
- /// multiple <remove> calls, e.g., explicitly and implicitly in the
+ /// 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: