summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2006-07-03 14:22:05 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2006-07-03 14:22:05 +0000
commit2081811468265bebe12c78b7f840fa19bdccf70a (patch)
tree2f7affb7f983f7bf474b27d16917ee907785fb8d
parent0670bbb469309fa574d3df955098b23b7d6c7963 (diff)
downloadATCD-2081811468265bebe12c78b7f840fa19bdccf70a.tar.gz
ChangeLogTag:Mon
-rw-r--r--ChangeLog13
-rw-r--r--THANKS1
-rw-r--r--examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp5
3 files changed, 18 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8dfaaf70c9c..a700601ac57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Mon Jul 3 03:25:43 UTC 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp
+ (ACE_TMAIN): Changed the reactor event loop to explicitly pass
+ in ACE_Reactor::check_reconfiguration(). Thanks to Michael Reed
+ <mnr102 at yahoo dot com> for reporting this.
+
+Mon Jul 3 03:15:14 UTC 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * examples/Service_Configurator/IPC-tests/server/server_test.cpp
+ (ACE_TMAIN): Changed the reactor event loop to explicitly pass
+ in ACE_Reactor::check_reconfiguration().
+
Fri Jun 30 13:40:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/msvc_static_order.lst:
diff --git a/THANKS b/THANKS
index 028f8f50061..ad6e01c5132 100644
--- a/THANKS
+++ b/THANKS
@@ -2128,6 +2128,7 @@ Paul Daugherty <Paul at nextalk dot com>
Robert Schwebel <robert at schwebel dot de>
William Cote <William dot Cote at hp dot com>
Ben Creech <bpcreech at alumni dot ncsu dot edu>
+Michael Reed <mnr102 at yahoo dot com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp b/examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp
index 4470396f156..1126a0393d1 100644
--- a/examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp
+++ b/examples/APG/Svc_Config/HA_Configurable_Server_Dynamic.cpp
@@ -8,7 +8,10 @@
int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ACE_Service_Config::open (argc, argv);
- ACE_Reactor::instance ()->run_reactor_event_loop ();
+
+ // We use this version of the event loop so that reconfigurations
+ // are triggered properly.
+ ACE_Reactor::instance ()->run_reactor_event_loop (ACE_Reactor::check_reconfiguration);
return 0;
}
// Listing 1