diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-15 13:41:25 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-02-15 13:41:25 +0000 |
commit | 4c1ec894e4845156036937d1e4dbfcae3fd6f3f3 (patch) | |
tree | 233d2ae945fecd0cb15dbecdbe14e8b3f59e33ce /ACE/ace/Stream.h | |
parent | efff99504bd67f08226503c6e763d8881fb11f29 (diff) | |
download | ATCD-4c1ec894e4845156036937d1e4dbfcae3fd6f3f3.tar.gz |
Thu Feb 15 13:38:58 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Stream.h')
-rw-r--r-- | ACE/ace/Stream.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Stream.h b/ACE/ace/Stream.h index 13a36b78f2b..59b440d02d0 100644 --- a/ACE/ace/Stream.h +++ b/ACE/ace/Stream.h @@ -132,18 +132,18 @@ public: // = Blocking data transfer operations /** - * Send the message <mb> down the stream, starting at the Module - * below the Stream head. Wait for upto <timeout> amount of + * Send the message @a mb down the stream, starting at the Module + * below the Stream head. Wait for upto @a timeout amount of * absolute time for the operation to complete (or block forever if - * <timeout> == 0). + * @a timeout == 0). */ virtual int put (ACE_Message_Block *mb, ACE_Time_Value *timeout = 0); /** - * Read the message <mb> that is stored in the stream head. - * Wait for upto <timeout> amount of absolute time for the operation - * to complete (or block forever if <timeout> == 0). + * Read the message @a mb that is stored in the stream head. + * Wait for upto @a timeout amount of absolute time for the operation + * to complete (or block forever if @a timeout == 0). */ virtual int get (ACE_Message_Block *&mb, ACE_Time_Value *timeout = 0); |