summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-12-16 16:04:54 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-12-16 16:04:54 +0000
commit65b9187897414f6e19545a89a9ef6eb3c9503b1f (patch)
treebb5616d61ced4e757ba4219c6bb8107cd06e9da2 /TAO
parent41ab810d7c417182a3c6404d350a7b689d2176bf (diff)
downloadATCD-65b9187897414f6e19545a89a9ef6eb3c9503b1f.tar.gz
ChangeLogTag:Tue Dec 16 09:31:18 2003 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog24
-rw-r--r--TAO/tao/default_resource.cpp2
2 files changed, 16 insertions, 10 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index a993cbc5e06..20a36d6fc12 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,10 +1,16 @@
-Tue Dec 16 08:11:35 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-
- * tao/default_resource.cpp:
-
- Instead of using errno, use reactor->initiliazed ()
- instead. Thanks to John Fletcher <john.fletcher@rd.bbc.co.uk>
- and Johnny for motivating this change.
+Tue Dec 16 07:52:43 2003 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * tao/default_resource.cpp (get_reactor): Changed
+
+ if (ACE_LOG_MSG->errnum ())
+
+ to
+
+ if (!reactor->initialized ())
+
+ since the latter is more robust. Thanks to John Fletcher
+ <john.fletcher@rd.bbc.co.uk> and Johnny Willemsen for motivating
+ this.
Tue Dec 16 12:08:13 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
@@ -16,8 +22,8 @@ Mon Dec 15 19:46:30 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch_T.inl:
#include Consumer.h to get arounda compile error in aCC. Thanks
- to Pierre Pacchioni <pierre.pacchioni@avisto.com> for suggesting
- the fix.
+ to Pierre Pacchioni <pierre.pacchioni@avisto.com> for suggesting
+ the fix.
Mon Dec 15 13:34:38 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
diff --git a/TAO/tao/default_resource.cpp b/TAO/tao/default_resource.cpp
index 56b1664fafb..f2a227d2d6a 100644
--- a/TAO/tao/default_resource.cpp
+++ b/TAO/tao/default_resource.cpp
@@ -753,7 +753,7 @@ TAO_Default_Resource_Factory::get_reactor (void)
ACE_Reactor (this->allocate_reactor_impl (), 1),
0);
- if (!reactor->initialized ())
+ if (reactor->initialized () == 0)
{
delete reactor;
reactor = 0;