summaryrefslogtreecommitdiff
path: root/ACE/ace/Message_Block.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-14 08:55:20 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-14 08:55:20 +0000
commit4859c160bb68904929a519aa53c6509bd6796b96 (patch)
tree12c6c35187b4fc9ba9d6b14ad7dd0648a4b70d80 /ACE/ace/Message_Block.h
parent7a0e3c20449e6a8ad592bec6cb80eec1e630e907 (diff)
downloadATCD-4859c160bb68904929a519aa53c6509bd6796b96.tar.gz
Wed Feb 14 08:53:58 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Message_Block.h')
-rw-r--r--ACE/ace/Message_Block.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Message_Block.h b/ACE/ace/Message_Block.h
index 755e2f839cc..4b0a73846e5 100644
--- a/ACE/ace/Message_Block.h
+++ b/ACE/ace/Message_Block.h
@@ -206,7 +206,7 @@ public:
* Create a Message Block that assumes it has ownership of @a data,
* but in reality it doesnt (i.e., cannot delete it since it didn't
* malloc it!). Note that the @c size of the Message_Block will
- * be @a size, but the <length> will be 0 until <wr_ptr> is set.
+ * be @a size, but the @a length will be 0 until <wr_ptr> is set.
*/
int init (const char *data,
size_t size = 0);
@@ -220,8 +220,8 @@ public:
* this object ceases to exist (and don't delete it during
* destruction). If @a locking_strategy is non-0 then this is used
* to protect regions of code that access shared state (e.g.,
- * reference counting) from race conditions. Note that the <size>
- * of the <Message_Block> will be @a size, but the <length> will be 0
+ * reference counting) from race conditions. Note that the @a size
+ * of the <Message_Block> will be @a size, but the @a length will be 0
* until <wr_ptr> is set. The @a data_block_allocator is use to
* allocate the data blocks while the @a allocator_strategy is used
* to allocate the buffers contained by those.