summaryrefslogtreecommitdiff
path: root/ace/Malloc_T.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-09 14:43:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-04-09 14:43:23 +0000
commit3bfc9e7c588def504aad321b284883a3902fc657 (patch)
tree76f4c8d8c96a4fd3b61ba248723947af30c72df1 /ace/Malloc_T.cpp
parent5ac7e4441257479f7a20789aed0768ec9117f654 (diff)
downloadATCD-3bfc9e7c588def504aad321b284883a3902fc657.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Malloc_T.cpp')
-rw-r--r--ace/Malloc_T.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/ace/Malloc_T.cpp b/ace/Malloc_T.cpp
index ef0d922e78d..891ad39fd7f 100644
--- a/ace/Malloc_T.cpp
+++ b/ace/Malloc_T.cpp
@@ -656,5 +656,18 @@ ACE_Malloc_Iterator<ACE_MEM_POOL_2, ACE_LOCK>::advance (void)
return this->curr_ != 0;
}
+
+template <size_t POOL_SIZE> void
+ACE_Static_Allocator<POOL_SIZE>::dump (void) const
+{
+ ACE_TRACE ("ACE_Static_Allocator<POOL_SIZE>::dump");
+
+ ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
+ ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\noffset_ = %d\n"), this->offset_));
+ ACE_HEX_DUMP ((LM_DEBUG, this->pool_, POOL_SIZE));
+ ACE_DEBUG ((LM_DEBUG, ASYS_TEXT ("\n")));
+
+ ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
+}
#endif /* ACE_MALLOC_T_C */