From 73d80e09b48a9c284e556ea422f2832082ab184b Mon Sep 17 00:00:00 2001 From: bala Date: Fri, 29 Aug 2003 20:36:34 +0000 Subject: ChangeLogTag:Fri Aug 29 15:35:05 2003 Balachandran Natarajan --- TAO/ChangeLog_ref | 6 ++++++ TAO/tao/TODO | 4 ---- TAO/tao/Thread_Lane_Resources.cpp | 23 +++++++++++++---------- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/TAO/ChangeLog_ref b/TAO/ChangeLog_ref index 4696aff76a2..437356acbb6 100644 --- a/TAO/ChangeLog_ref +++ b/TAO/ChangeLog_ref @@ -1,3 +1,9 @@ +Fri Aug 29 15:35:05 2003 Balachandran Natarajan + + * tao/Thread_Lane_Resources.cpp (finalize): Initialize the output + cdr allocators before using them. Thanks to valgrind for picking + this up. x + Fri Aug 29 15:05:33 2003 Jeff Parsons * TAO_IDL/be/be_visitor_interface/interface_ch.cpp: diff --git a/TAO/tao/TODO b/TAO/tao/TODO index e15163af250..e6e0f9f202f 100644 --- a/TAO/tao/TODO +++ b/TAO/tao/TODO @@ -17,8 +17,6 @@ . Test case for forwarded objects in collocated mode being remote -. Remove tao_queryinterface - . Recursive location forwards is broken still. . Oneways and location forwards @@ -41,8 +39,6 @@ . Collocation and AMI -. Try a build with MESSAGING == 0; - . Real-time CORBA testing . Code set translators diff --git a/TAO/tao/Thread_Lane_Resources.cpp b/TAO/tao/Thread_Lane_Resources.cpp index 5554da114a1..a934c64286b 100644 --- a/TAO/tao/Thread_Lane_Resources.cpp +++ b/TAO/tao/Thread_Lane_Resources.cpp @@ -20,16 +20,19 @@ ACE_RCSID(tao, Thread_Lane_Resources, "$Id$") TAO_Thread_Lane_Resources::TAO_Thread_Lane_Resources (TAO_ORB_Core &orb_core, TAO_New_Leader_Generator *new_leader_generator) - : orb_core_ (orb_core), - acceptor_registry_ (0), - connector_registry_ (0), - transport_cache_ (0), - leader_follower_ (0), - new_leader_generator_ (new_leader_generator), - input_cdr_dblock_allocator_ (0), - input_cdr_buffer_allocator_ (0), - input_cdr_msgblock_allocator_ (0), - transport_message_buffer_allocator_ (0) + : orb_core_ (orb_core) + , acceptor_registry_ (0) + , connector_registry_ (0) + , transport_cache_ (0) + , leader_follower_ (0) + , new_leader_generator_ (new_leader_generator) + , input_cdr_dblock_allocator_ (0) + , input_cdr_buffer_allocator_ (0) + , input_cdr_msgblock_allocator_ (0) + , transport_message_buffer_allocator_ (0) + , output_cdr_dblock_allocator_ (0) + , output_cdr_buffer_allocator_ (0) + , output_cdr_msgblock_allocator_ (0) { // Create the transport cache. ACE_NEW (this->transport_cache_, -- cgit v1.2.1