summaryrefslogtreecommitdiff
path: root/ACE/ace/Lock.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-05-23 13:33:56 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-05-23 13:33:56 +0000
commit0449015e59162f4159f2e8802156968442417e15 (patch)
tree24cbebdcec340cb1e2524f9f8ff9c6e61646c4d8 /ACE/ace/Lock.h
parentea5abcfb2bd8115f96a7156616d499cdbf48e126 (diff)
downloadATCD-0449015e59162f4159f2e8802156968442417e15.tar.gz
Wed May 23 15:32:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Lock.h')
-rw-r--r--ACE/ace/Lock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Lock.h b/ACE/ace/Lock.h
index 272683098c0..2b95c1962da 100644
--- a/ACE/ace/Lock.h
+++ b/ACE/ace/Lock.h
@@ -63,7 +63,7 @@ public:
/**
* Conditionally acquire the 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.
*/
virtual int tryacquire (void) = 0;
@@ -88,7 +88,7 @@ public:
* Conditionally acquire a read lock. If the locking mechanism
* doesn't support read locks then this just calls <acquire>.
* 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.
*/
virtual int tryacquire_read (void) = 0;
@@ -96,7 +96,7 @@ public:
* Conditionally acquire a write lock. If the locking mechanism
* doesn't support read locks then this just calls <acquire>.
* 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.
*/
virtual int tryacquire_write (void) = 0;