summaryrefslogtreecommitdiff
path: root/ace/Malloc.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-04-10 19:03:11 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-04-10 19:03:11 +0000
commit9cde40d0c48adfc59c02d2027b103a482297e5c8 (patch)
treef11e1c66673bfc57d5b4268bd075bee75dbec45c /ace/Malloc.cpp
parenta439985f34c1c878783bfb75100fa541d32530b0 (diff)
downloadATCD-9cde40d0c48adfc59c02d2027b103a482297e5c8.tar.gz
.
Diffstat (limited to 'ace/Malloc.cpp')
-rw-r--r--ace/Malloc.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/ace/Malloc.cpp b/ace/Malloc.cpp
index 5caa47c8b48..21111301edc 100644
--- a/ace/Malloc.cpp
+++ b/ace/Malloc.cpp
@@ -140,12 +140,13 @@ ACE_Allocator::close_singleton (void)
{
ACE_TRACE ("ACE_Allocator::close_singleton");
- ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon,
+ ACE_MT (ACE_GUARD (ACE_Recursive_Thread_Mutex, ace_mon,
*ACE_Static_Object_Lock::instance ()));
if (ACE_Allocator::delete_allocator_)
{
- // This should never be executed. See ACE_Allocator::instance (void).
+ // This should never be executed.... See the
+ // ACE_Allocator::instance (void) method for an explanation.
delete ACE_Allocator::allocator_;
ACE_Allocator::allocator_ = 0;
ACE_Allocator::delete_allocator_ = 0;
@@ -157,6 +158,11 @@ ACE_Allocator::~ACE_Allocator (void)
ACE_TRACE ("ACE_Allocator::~ACE_Allocator");
}
+ACE_Allocator::ACE_Allocator (void)
+{
+ ACE_TRACE ("ACE_Allocator::ACE_Allocator");
+}
+
void
ACE_Static_Allocator_Base::dump (void) const
{