summaryrefslogtreecommitdiff
path: root/ACE/ace/Recursive_Thread_Mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Recursive_Thread_Mutex.h')
-rw-r--r--ACE/ace/Recursive_Thread_Mutex.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Recursive_Thread_Mutex.h b/ACE/ace/Recursive_Thread_Mutex.h
index 5ce635cac12..38effc66afb 100644
--- a/ACE/ace/Recursive_Thread_Mutex.h
+++ b/ACE/ace/Recursive_Thread_Mutex.h
@@ -64,7 +64,7 @@ public:
/**
* Block the thread until we acquire the mutex or until @a tv times
- * out, in which case -1 is returned with <errno> == <ETIME>. Note
+ * out, in which case -1 is returned with @c errno == @c ETIME. Note
* that @a tv is assumed to be in "absolute" rather than "relative"
* time. The value of @a tv is updated upon return to show the
* actual (absolute) acquisition time.
@@ -74,7 +74,7 @@ public:
/**
* If @a tv == 0 the call <acquire()> directly. Otherwise, Block the
* thread until we acquire the mutex or until @a tv times out, in
- * which case -1 is returned with <errno> == <ETIME>. Note that
+ * which case -1 is returned with @c errno == @c ETIME. Note that
* <*tv> is assumed to be in "absolute" rather than "relative" time.
* The value of <*tv> is updated upon return to show the actual
* (absolute) acquisition time.
@@ -84,7 +84,7 @@ public:
/**
* Conditionally acquire a recursive mutex (i.e., won't block).
* Returns -1 on failure. If we "failed" because someone else
- * already had the lock, <errno> is set to <EBUSY>.
+ * already had the lock, @c errno is set to @c EBUSY.
*/
int tryacquire (void);
@@ -107,8 +107,8 @@ public:
* <tryacquire> and is only here to make the
* <ACE_Recusive_Thread_Mutex> interface consistent with the other
* synchronization APIs. Returns -1 on failure. If we "failed"
- * because someone else already had the lock, <errno> is set to
- * <EBUSY>.
+ * because someone else already had the lock, @c errno is set to
+ * @c EBUSY.
*/
int tryacquire_read (void);
@@ -117,8 +117,8 @@ public:
* <tryacquire> and is only here to make the
* <ACE_Recusive_Thread_Mutex> interface consistent with the other
* synchronization APIs. Returns -1 on failure. If we "failed"
- * because someone else already had the lock, <errno> is set to
- * <EBUSY>.
+ * because someone else already had the lock, @c errno is set to
+ * @c EBUSY.
*/
int tryacquire_write (void);