summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-01-06 04:03:10 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-01-06 04:03:10 +0000
commit5ef590feee6814aa45fe93172a85a29548c51ec6 (patch)
tree45ce065df2d38a201e87f6515bb45b12837afc78
parentec59da9fbc76d89ad1bd4cd2ec8ec50cd33e2069 (diff)
downloadATCD-5ef590feee6814aa45fe93172a85a29548c51ec6.tar.gz
ChangeLogTag:Sat Jan 5 20:00:21 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a9
-rw-r--r--TAO/tao/Connection_Handler.inl8
2 files changed, 14 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 533587db5e2..d1aafe80a62 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Sat Jan 5 20:00:21 2002 Ossama Othman <ossama@uci.edu>
+
+ * tao/Connection_Handler.inl (TAO_Connection_Handler):
+
+ Initialize "pending_upcalls_" and "pending_upcall_lock_" in the
+ base member initializer list. Although this constructor is not
+ used, it is best to ensure that proper initialization is
+ performed in the event this constructor is used in the future.
+
Sat Jan 5 19:30:08 2002 Ossama Othman <ossama@uci.edu>
* tao/orbconf.h:
diff --git a/TAO/tao/Connection_Handler.inl b/TAO/tao/Connection_Handler.inl
index 49ac55ad5b8..2fcd9d21b75 100644
--- a/TAO/tao/Connection_Handler.inl
+++ b/TAO/tao/Connection_Handler.inl
@@ -1,12 +1,14 @@
-//* -*- C++ -*- */
+// -*- C++ -*-
+//
//$Id$
ACE_INLINE
TAO_Connection_Handler::TAO_Connection_Handler (void)
: orb_core_ (0),
transport_ (0),
- tss_resources_ (0)
- //, is_registered_ (0)
+ tss_resources_ (0),
+ pending_upcalls_ (1),
+ pending_upcall_lock_ (0)
{
}