summaryrefslogtreecommitdiff
path: root/ace/Proactor.cpp
diff options
context:
space:
mode:
authorjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-12 18:23:10 +0000
committerjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-12 18:23:10 +0000
commit17b31a8b05f922c0eb0f2bdd4ad7dee8f111c21a (patch)
treeea0740a613b8b973e03ef96cb710dab127a7ae75 /ace/Proactor.cpp
parent61d24cb233702017e066784ca745910912020395 (diff)
downloadATCD-17b31a8b05f922c0eb0f2bdd4ad7dee8f111c21a.tar.gz
* Asynch_IO.cpp: Minor changes to deal with FMR error.
* Message_Block.{cpp,i,h}: Changed rd_ptr_ and wr_ptr_ to be byte offsets from base (). This allows one to resize a duplicate without trashing other Message_Blocks that may be referring to the same data block. * Proactor.cpp: Made the message block 64 bytes bigger to make purify happier.
Diffstat (limited to 'ace/Proactor.cpp')
-rw-r--r--ace/Proactor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Proactor.cpp b/ace/Proactor.cpp
index 60d5091c2cf..dcd606d19a4 100644
--- a/ace/Proactor.cpp
+++ b/ace/Proactor.cpp
@@ -192,7 +192,7 @@ private:
ACE_AIO_Accept_Handler::ACE_AIO_Accept_Handler (ACE_Proactor *proactor)
: proactor_ (proactor),
- message_block_ (sizeof (ACE_Asynch_Accept::Result *))
+ message_block_ (sizeof (ACE_Asynch_Accept::Result *) + 64)
{
// Open the pipe.
this->pipe_.open ();