diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 8 | ||||
-rw-r--r-- | ace/Service_Config.cpp | 4 | ||||
-rw-r--r-- | ace/Service_Config.h | 3 |
5 files changed, 27 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 3ebfafb6974..dfe915b4d41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Tue Jan 11 17:39:10 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Service_Config.h: Updated the ACE_Service_Config::close() + method documentation to reflect the fact that it no longer + closes the singletons (these are closed by the + ACE_Object_Manager now). Thanks to Craig Perras + <cperras@watchguard.com> for reporting this. + Tue Jan 11 17:22:21 2000 bala <bala@cs.wustl.edu> * ACE version 5.0.12 released. diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 3ebfafb6974..dfe915b4d41 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Tue Jan 11 17:39:10 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Service_Config.h: Updated the ACE_Service_Config::close() + method documentation to reflect the fact that it no longer + closes the singletons (these are closed by the + ACE_Object_Manager now). Thanks to Craig Perras + <cperras@watchguard.com> for reporting this. + Tue Jan 11 17:22:21 2000 bala <bala@cs.wustl.edu> * ACE version 5.0.12 released. diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 3ebfafb6974..dfe915b4d41 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,11 @@ +Tue Jan 11 17:39:10 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Service_Config.h: Updated the ACE_Service_Config::close() + method documentation to reflect the fact that it no longer + closes the singletons (these are closed by the + ACE_Object_Manager now). Thanks to Craig Perras + <cperras@watchguard.com> for reporting this. + Tue Jan 11 17:22:21 2000 bala <bala@cs.wustl.edu> * ACE version 5.0.12 released. diff --git a/ace/Service_Config.cpp b/ace/Service_Config.cpp index 100be63168e..33a5f90bf2c 100644 --- a/ace/Service_Config.cpp +++ b/ace/Service_Config.cpp @@ -773,8 +773,8 @@ ACE_Service_Config::close (void) if (ACE_Service_Config::is_initialized_ > 0) return 0; - // Delete the service repository. All the objects inside the service - // repository have already been finalized . + // Delete the service repository. All the objects inside the + // service repository should already have been finalized. ACE_Service_Config::close_svcs (); // Delete the list fo svc.conf files diff --git a/ace/Service_Config.h b/ace/Service_Config.h index c8f791f57cd..cdd806cf125 100644 --- a/ace/Service_Config.h +++ b/ace/Service_Config.h @@ -198,8 +198,7 @@ public: static int close (void); // Tidy up and perform last rites when ACE_Service_Config is shut - // down. This method calls <close_svcs> and <close_singletons>. - // Returns 0. + // down. This method calls <close_svcs>. Returns 0. static int fini_svcs (void); // Perform user-specified close hooks and possibly delete all of the |