diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-02-14 02:57:40 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-02-14 02:57:40 +0000 |
commit | fbf21ff2aae1d038d88d54cbc34f77262e4196e5 (patch) | |
tree | bd4a3c8bf77e022d7b483e4290f6232c334adb0b | |
parent | 581e37424bc33694f3adc8a5f237eb2efa37517c (diff) | |
download | ATCD-fbf21ff2aae1d038d88d54cbc34f77262e4196e5.tar.gz |
ChangeLogTag:Wed Feb 13 20:13:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 7 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 7 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | ace/Strategies_T.cpp | 1 |
5 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 628f36b5123..16a38e7f8ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Feb 13 20:13:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu> + + * ace/Strategies_T.cpp (make_svc_handler): Make sure that the + reactor of the Svc Handler is set to the reactor from the + Creation Strategy. Thanks to David Smith + <smithdav@tycoelectronics.com> for reporting this! + Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Configuration.cpp (operator=): Fixed a warning in g+ diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 628f36b5123..16a38e7f8ac 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,10 @@ +Wed Feb 13 20:13:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu> + + * ace/Strategies_T.cpp (make_svc_handler): Make sure that the + reactor of the Svc Handler is set to the reactor from the + Creation Strategy. Thanks to David Smith + <smithdav@tycoelectronics.com> for reporting this! + Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Configuration.cpp (operator=): Fixed a warning in g+ diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 628f36b5123..16a38e7f8ac 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,10 @@ +Wed Feb 13 20:13:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu> + + * ace/Strategies_T.cpp (make_svc_handler): Make sure that the + reactor of the Svc Handler is set to the reactor from the + Creation Strategy. Thanks to David Smith + <smithdav@tycoelectronics.com> for reporting this! + Wed Feb 13 17:42:32 2002 Balachandran Natarajan <bala@cs.wustl.edu> * ace/Configuration.cpp (operator=): Fixed a warning in g+ @@ -1447,6 +1447,7 @@ Bhaskara Rao G <bhaskar@mihy.mot.com> M Schulze <m2.schulze@gmx.net> John Michael Zorko <j.zorko@att.net> Ami Bar <amib@rit.co.il> +David Smith <smithdav@tycoelectronics.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/ace/Strategies_T.cpp b/ace/Strategies_T.cpp index 70924c3bc31..0ee3625bf65 100644 --- a/ace/Strategies_T.cpp +++ b/ace/Strategies_T.cpp @@ -117,6 +117,7 @@ ACE_DLL_Strategy<SVC_HANDLER>::make_svc_handler (SVC_HANDLER *&sh) } sh = svc_handler; + sh->reactor (this->reactor ()); return 0; } |