summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2000-01-27 22:42:28 +0000
committerSteve Huston <shuston@riverace.com>2000-01-27 22:42:28 +0000
commitd519480cb72fff638846e7c4dc459a74759f0d8f (patch)
tree2d58b3d07e993f7592de9d8642d5f16a49d66e66
parent3e03a8cdc32d45f8f2d9ef3bdf4b23442c1d4087 (diff)
downloadATCD-d519480cb72fff638846e7c4dc459a74759f0d8f.tar.gz
ChangeLogTag:Thu Jan 27 16:38:03 2000 Steve Huston <shuston@riverace.com>
-rw-r--r--ace/Asynch_IO.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/ace/Asynch_IO.h b/ace/Asynch_IO.h
index 8188d8e1b34..6100ba2386c 100644
--- a/ace/Asynch_IO.h
+++ b/ace/Asynch_IO.h
@@ -267,7 +267,9 @@ public:
int priority = 0,
int signal_number = ACE_SIGRTMIN);
// This starts off an asynchronous read. Upto <bytes_to_read> will
- // be read and stored in the <message_block>. Priority of the
+ // be read and stored in the <message_block>. <message_block>'s
+ // <wr_ptr> will be updated to reflect the added bytes if the read
+ // operation is successful completed. Priority of the
// operation is specified by <priority>. On POSIX4-Unix, this is
// supported. Works like <nice> in Unix. Negative values are not
// allowed. 0 means priority of the operation same as the process
@@ -375,7 +377,9 @@ public:
int priority = 0,
int signal_number = ACE_SIGRTMIN);
// This starts off an asynchronous write. Upto <bytes_to_write>
- // will be written from the <message_block>. Priority of the
+ // will be written from the <message_block>. Upon successful completion
+ // of the write operation, <message_block>'s <rd_ptr> is updated to
+ // reflect the data that was written. Priority of the
// operation is specified by <priority>. On POSIX4-Unix, this is
// supported. Works like <nice> in Unix. Negative values are not
// allowed. 0 means priority of the operation same as the process