summaryrefslogtreecommitdiff
path: root/ACE/ace/MEM_IO.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-10-22 18:54:15 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-10-22 18:54:15 +0000
commit92758a4736d3aa1ccc8b53acdc62fb144c107050 (patch)
tree6072ed71e0bbc721f10bffe967a37fcb3c8589be /ACE/ace/MEM_IO.h
parent9baf137c61b562db35419c5c8a6d0039822d3503 (diff)
downloadATCD-92758a4736d3aa1ccc8b53acdc62fb144c107050.tar.gz
Mon Oct 22 18:53:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/MEM_IO.h')
-rw-r--r--ACE/ace/MEM_IO.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/MEM_IO.h b/ACE/ace/MEM_IO.h
index e6b5300fbb9..1c024d5c561 100644
--- a/ACE/ace/MEM_IO.h
+++ b/ACE/ace/MEM_IO.h
@@ -60,7 +60,7 @@ public:
/**
* Wait to to @a timeout amount of time to send @a buf. If <send>
- * times out a -1 is returned with <errno == ETIME>. If it succeeds
+ * times out a -1 is returned with @c errno == ETIME. If it succeeds
* the number of bytes sent is returned. */
virtual ssize_t send_buf (ACE_MEM_SAP_Node *buf,
int flags,
@@ -129,7 +129,7 @@ public:
/**
* Wait to to @a timeout amount of time to send @a buf. If <send>
- * times out a -1 is returned with <errno == ETIME>. If it succeeds
+ * times out a -1 is returned with @c errno == ETIME. If it succeeds
* the number of bytes sent is returned. */
virtual ssize_t send_buf (ACE_MEM_SAP_Node *buf,
int flags,
@@ -219,7 +219,7 @@ public:
/**
* Wait to to @a timeout amount of time to send up to @a n bytes into
* @a buf from <handle> (uses the <send> call). If <send> times out
- * a -1 is returned with <errno == ETIME>. If it succeeds the
+ * a -1 is returned with @c errno == ETIME. If it succeeds the
* number of bytes sent is returned.
*/
ssize_t send (const void *buf,
@@ -229,7 +229,7 @@ public:
/**
* Wait to to @a timeout amount of time to send up to @a n bytes into
* @a buf from <handle> (uses the <send> call). If <send> times out
- * a -1 is returned with <errno == ETIME>. If it succeeds the
+ * a -1 is returned with @c errno == ETIME. If it succeeds the
* number of bytes sent is returned.
*/
ssize_t send (const void *buf,
@@ -239,7 +239,7 @@ public:
/**
* Wait to to @a timeout amount of time to send the @a message_block.
- * If <send> times out a -1 is returned with <errno == ETIME>. If
+ * If <send> times out a -1 is returned with @c errno == ETIME. If
* it succeeds the number of bytes sent is returned.
*/
ssize_t send (const ACE_Message_Block *message_block,
@@ -248,7 +248,7 @@ public:
/**
* Wait up to @a timeout amount of time to receive up to @a n bytes
* into @a buf from <handle> (uses the <recv> call). If <recv> times
- * out a -1 is returned with <errno == ETIME>. If it succeeds the
+ * out a -1 is returned with @c errno == ETIME. If it succeeds the
* number of bytes received is returned.
*/
ssize_t recv (void *buf,
@@ -258,7 +258,7 @@ public:
/**
* Wait up to @a timeout amount of time to receive up to @a n bytes
* into @a buf from <handle> (uses the <recv> call). If <recv> times
- * out a -1 is returned with <errno == ETIME>. If it succeeds the
+ * out a -1 is returned with @c errno == ETIME. If it succeeds the
* number of bytes received is returned.
*/
ssize_t recv (void *buf,