summaryrefslogtreecommitdiff
path: root/ACE/ace/Null_Condition.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Null_Condition.h')
-rw-r--r--ACE/ace/Null_Condition.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Null_Condition.h b/ACE/ace/Null_Condition.h
index a72df210a51..e67f2a0bb41 100644
--- a/ACE/ace/Null_Condition.h
+++ b/ACE/ace/Null_Condition.h
@@ -50,10 +50,10 @@ public:
/// Returns 0.
int remove (void) {return 0;}
- /// Returns -1 with <errno> == <ETIME>.
+ /// Returns -1 with @c errno == @c ETIME.
int wait (const ACE_Time_Value * = 0) {errno = ETIME; return -1;}
- /// Returns -1 with <errno> == <ETIME>.
+ /// Returns -1 with @c errno == @c ETIME.
int wait (ACE_Null_Mutex &,
const ACE_Time_Value * = 0) {errno = ETIME; return -1;}