summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-22 22:36:35 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-01-22 22:36:35 +0000
commit23b0a3bd290d907c6855f36be45fc1bb29b33cde (patch)
tree673edd29fdfe2aec22d52fb39ba7565c4f81df50
parentc6be85c169ec645c001d6f86f002fc100cd8558e (diff)
downloadATCD-23b0a3bd290d907c6855f36be45fc1bb29b33cde.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a7
-rw-r--r--examples/Connection/misc/Connection_Handler.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index f7b1b662197..c57323e65b0 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,10 @@
+Thu Jan 22 16:34:18 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * examples/Connection/misc/Connection_Handler.cpp (svc): Fixed a
+ bug in the example where the global Singleton Reactor was being
+ used rather than the object's Reactor. Thanks to Peter Gross
+ <pag@kokako.probita.com> for reporting this.
+
Thu Jan 22 09:04:13 1998 David L. Levine <@cs.wustl.edu>
* ace/Hash_Map_Manager.cpp (ACE_Hash_Map_Iterator_Base ctor):
diff --git a/examples/Connection/misc/Connection_Handler.cpp b/examples/Connection/misc/Connection_Handler.cpp
index e7934dbb375..a7c1313e123 100644
--- a/examples/Connection/misc/Connection_Handler.cpp
+++ b/examples/Connection/misc/Connection_Handler.cpp
@@ -115,7 +115,7 @@ Connection_Handler::svc (void)
}
// Cancel all pending timeouts.
- ACE_Reactor::instance ()->cancel_timer (this);
+ this->reactor ()->cancel_timer (this);
// Remove ourselves from the Reactor.
this->reactor ()->remove_handler