summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-06-24 16:22:02 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-06-24 16:22:02 +0000
commitf083dc8544982bb5ba957aa6290d068b30f3ac95 (patch)
treecf45d402821b20646dc261ed89814406eddc884f
parentad69f794854dd8ce9f026136e5a1d85eb52b89c8 (diff)
downloadATCD-f083dc8544982bb5ba957aa6290d068b30f3ac95.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog_bug_57512
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog_bug_575 b/ChangeLog_bug_575
new file mode 100644
index 00000000000..6eec24e117e
--- /dev/null
+++ b/ChangeLog_bug_575
@@ -0,0 +1,12 @@
+Fri Jun 22 16:52:13 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/CDR_Stream.cpp: Changed the copy constructor for the
+ ACE_InputCDR's. Instead of duplicating the ACE_Data_Block we
+ now use the new copy constructor in the ACE_Message_Block.
+
+ * ace/Message_Block.h:
+ * ace/Message_Block.cpp: Added a new copy constructor to the
+ ACE_Message_Block. This copy constructor does a deep copy from
+ the data block if the data block of the incoming message block
+ is on the stack or does a shallow copy of the data block (by
+ incrementing the ref count) if it is on the heap.