summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-08-29 20:36:34 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-08-29 20:36:34 +0000
commit73d80e09b48a9c284e556ea422f2832082ab184b (patch)
tree26d5a9ce1aab2c820086a5e42ccda5dfd7de6217
parent165f7bad4d949fed144b70bbc414fd07decbf735 (diff)
downloadATCD-73d80e09b48a9c284e556ea422f2832082ab184b.tar.gz
ChangeLogTag:Fri Aug 29 15:35:05 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog_ref6
-rw-r--r--TAO/tao/TODO4
-rw-r--r--TAO/tao/Thread_Lane_Resources.cpp23
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 <bala@dre.vanderbilt.edu>
+
+ * 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 <j.parsons@vanderbilt.edu>
* 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_,