From 17b31a8b05f922c0eb0f2bdd4ad7dee8f111c21a Mon Sep 17 00:00:00 2001 From: jxh Date: Mon, 12 Oct 1998 18:23:10 +0000 Subject: * 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. --- ace/Proactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ace/Proactor.cpp') 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 (); -- cgit v1.2.1