diff options
author | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-07-27 20:48:28 +0000 |
---|---|---|
committer | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-07-27 20:48:28 +0000 |
commit | 1f91ef90072d1703e75e519eb40678c55f71f2e4 (patch) | |
tree | 41ca1b5df67921f46f3cb4b73434c76c82006d06 /ace/Memory_Pool.cpp | |
parent | 3a7046470e4995d08cff64176cb6b97adaf30155 (diff) | |
download | ATCD-1f91ef90072d1703e75e519eb40678c55f71f2e4.tar.gz |
ChangeLogTag:Sun Jul 27 20:19:48 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'ace/Memory_Pool.cpp')
-rw-r--r-- | ace/Memory_Pool.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp index e05e54cf19f..c33b0bc9080 100644 --- a/ace/Memory_Pool.cpp +++ b/ace/Memory_Pool.cpp @@ -22,7 +22,9 @@ ACE_ALLOC_HOOK_DEFINE(ACE_Local_Memory_Pool) void ACE_Local_Memory_Pool::dump (void) const { +#if defined (ACE_HAS_DUMP) ACE_TRACE ("ACE_Local_Memory_Pool::dump"); +#endif /* ACE_HAS_DUMP */ } ACE_Local_Memory_Pool::ACE_Local_Memory_Pool (const ACE_TCHAR *, @@ -88,7 +90,9 @@ ACE_ALLOC_HOOK_DEFINE(ACE_MMAP_Memory_Pool) void ACE_MMAP_Memory_Pool::dump (void) const { +#if defined (ACE_HAS_DUMP) ACE_TRACE ("ACE_MMAP_Memory_Pool::dump"); +#endif /* ACE_HAS_DUMP */ } int @@ -593,7 +597,9 @@ ACE_Sbrk_Memory_Pool::acquire (size_t nbytes, void ACE_Sbrk_Memory_Pool::dump (void) const { +#if defined (ACE_HAS_DUMP) ACE_TRACE ("ACE_Sbrk_Memory_Pool::dump"); +#endif /* ACE_HAS_DUMP */ } ACE_Sbrk_Memory_Pool::ACE_Sbrk_Memory_Pool (const ACE_TCHAR *, @@ -628,7 +634,9 @@ ACE_Shared_Memory_Pool_Options::ACE_Shared_Memory_Pool_Options (const char *base void ACE_Shared_Memory_Pool::dump (void) const { +#if defined (ACE_HAS_DUMP) ACE_TRACE ("ACE_Shared_Memory_Pool::dump"); +#endif /* ACE_HAS_DUMP */ } int |