summaryrefslogtreecommitdiff
path: root/ACE/ace/Pipe.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Pipe.h')
-rw-r--r--ACE/ace/Pipe.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Pipe.h b/ACE/ace/Pipe.h
index 1c88ccdc3ed..7e1a891dddf 100644
--- a/ACE/ace/Pipe.h
+++ b/ACE/ace/Pipe.h
@@ -85,10 +85,10 @@ public:
/// Dump the state of the object.
void dump (void) const;
- /// send upto <n> bytes in <buf>.
+ /// send upto @a n bytes in @a buf.
ssize_t send (const void *buf, size_t n) const;
- /// Recv upto <n> bytes in <buf>.
+ /// Recv upto @a n bytes in @a buf.
ssize_t recv (void *buf, size_t n) const;
/// Send n bytes, keep trying until n are sent.
@@ -127,26 +127,26 @@ public:
*/
ssize_t recv (size_t n, ...) const;
- /// Send <n> bytes via Win32 WriteFile using overlapped I/O.
+ /// Send @a n bytes via Win32 WriteFile using overlapped I/O.
ssize_t send (const void *buf,
size_t n,
ACE_OVERLAPPED *overlapped) const;
- /// Recv <n> bytes via Win32 ReadFile using overlapped I/O.
+ /// Recv @a n bytes via Win32 ReadFile using overlapped I/O.
ssize_t recv (void *buf,
size_t n,
ACE_OVERLAPPED *overlapped) const;
- /// Send an <iovec> of size <n> to the file.
+ /// Send an <iovec> of size @a n to the file.
ssize_t sendv (const iovec iov[],
int n) const;
- /// Send an <iovec> of size <n> to the file. Will block until all
+ /// Send an <iovec> of size @a n to the file. Will block until all
/// bytes are sent or an error occurs.
ssize_t sendv_n (const iovec iov[],
int n) const;
- /// Receive an <iovec> of size <n> to the file.
+ /// Receive an <iovec> of size @a n to the file.
ssize_t recvv_n (iovec iov[],
int n) const;