summaryrefslogtreecommitdiff
path: root/ACE/ace/Null_Mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Null_Mutex.h')
-rw-r--r--ACE/ace/Null_Mutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Null_Mutex.h b/ACE/ace/Null_Mutex.h
index 2072bf2db52..8d68c709d5a 100644
--- a/ACE/ace/Null_Mutex.h
+++ b/ACE/ace/Null_Mutex.h
@@ -54,10 +54,10 @@ public:
/// Return 0.
int acquire (void) {return 0;}
- /// Return -1 with <errno> == <ETIME>.
+ /// Return -1 with @c errno == @c ETIME.
int acquire (ACE_Time_Value &) {errno = ETIME; return -1;}
- /// Return -1 with <errno> == <ETIME>.
+ /// Return -1 with @c errno == @c ETIME.
int acquire (ACE_Time_Value *) {errno = ETIME; return -1;}
/// Return 0.