diff options
Diffstat (limited to 'ACE/ace/Process_Mutex.h')
-rw-r--r-- | ACE/ace/Process_Mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Process_Mutex.h b/ACE/ace/Process_Mutex.h index 6d4cffdb297..c2fb3c702da 100644 --- a/ACE/ace/Process_Mutex.h +++ b/ACE/ace/Process_Mutex.h @@ -160,14 +160,14 @@ public: /** * Conditionally acquire a lock (i.e., won't block). Returns -1 on * failure. If we "failed" because someone else already had the - * lock, <errno> is set to <EBUSY>. + * lock, @c errno is set to @c EBUSY. */ int tryacquire_read (void); /** * Conditionally acquire a lock (i.e., won't block). Returns -1 on * failure. If we "failed" because someone else already had the - * lock, <errno> is set to <EBUSY>. + * lock, @c errno is set to @c EBUSY. */ int tryacquire_write (void); |