summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2007-07-31 15:09:57 +0000
committerSteve Huston <shuston@riverace.com>2007-07-31 15:09:57 +0000
commitf797e19c1330e68d13a64eaf260e2c6a0c42079a (patch)
treeecbe8b6ba38b5c34cffefafc619d7232ff1ecf09
parentfce807bdee6abdb66a4f90ae313817c228618ac4 (diff)
downloadATCD-f797e19c1330e68d13a64eaf260e2c6a0c42079a.tar.gz
Reformat too-long comments
-rw-r--r--ACE/ace/Service_Config.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/ACE/ace/Service_Config.cpp b/ACE/ace/Service_Config.cpp
index 105d61a232b..d24bd2c0021 100644
--- a/ACE/ace/Service_Config.cpp
+++ b/ACE/ace/Service_Config.cpp
@@ -363,20 +363,21 @@ ACE_Service_Config::resume (const ACE_TCHAR svc_name[])
}
// This specialization allows us to have an ACE_TSS, which will _not_ perform
-// a delete on (ACE_Service_Gestalt*) p up on thread exit, when TSS is cleaned up.
+// a delete on (ACE_Service_Gestalt*) p up on thread exit, when TSS is
+// cleaned up.
// Note that the tss_ member will be destroyed with the ACE_Object_Manager's
// ACE_Service_Config singleton, so no leaks are introduced.
template<> void
ACE_TSS<ACE_Service_Gestalt>::cleanup (void*)
{
- // We need this because the SC instance
- // is really owned by the Object Manager and the TSS cleanup must not dispose of it
- // prematurely.
- // Naturally, things would be simpler, if we could avoid using the TSS alltogether
- // but we need the ability to temporarily designate a different SC instance as the
- // "default". So, the solution is a hybrid, or non-owner ACE_TSS.
- // See ticket 2980 for a description of a test case where ACE_TSS::cleanup() is
- // called before ~ACE_Object_Manager.
+ // We need this because the SC instance is really owned by the Object
+ // Manager and the TSS cleanup must not dispose of it prematurely.
+ // Naturally, things would be simpler, if we could avoid using the TSS
+ // altogether but we need the ability to temporarily designate a
+ // different SC instance as the "default." So, the solution is a hybrid,
+ // or non-owner ACE_TSS.
+ // See ticket 2980 for a description of a test case where
+ // ACE_TSS::cleanup() is called before ~ACE_Object_Manager.
}