summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-13 15:53:51 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-13 15:53:51 +0000
commit5963b97bde60fa998d2c01874d163aed6037014c (patch)
treeb14b3ca4bc5be5f47e05e7ab4479faaf6f5d07a3
parent991a536923aa1797107b5fd2c73898abede61f5f (diff)
downloadATCD-5963b97bde60fa998d2c01874d163aed6037014c.tar.gz
ChangeLogTag:Tue Oct 13 10:51:10 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-98c7
-rw-r--r--TAO/tao/ORB.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 004133cdc3d..f79af882e51 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,10 @@
+Tue Oct 13 10:51:10 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * tao/ORB.cpp:
+ Thread ids in some platforms (ex: HP-UX) are structures, so they
+ cannot be initialized to 0, thanks to David.Janello@abnamro.com
+ for reporting this one.
+
Tue Oct 13 09:16:20 1998 David L. Levine <levine@cs.wustl.edu>
* orbsvcs/orbsvcs/Sched/DynSched.cpp: changed a handful
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index 690d554b32e..b973e6e556a 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -122,7 +122,7 @@ CORBA_ORB::CORBA_ORB (void)
trading_service_ (CORBA_Object::_nil ())
{
leader_follower_info_.leaders_ = 0;
- leader_follower_info_.leader_thread_ID_ = 0;
+ leader_follower_info_.leader_thread_ID_ = ACE_OS::NULL_thread;
this->cond_become_leader_ =
new ACE_SYNCH_CONDITION (leader_follower_info_.leader_follower_lock_);
}