diff options
Diffstat (limited to 'ace')
-rw-r--r-- | ace/MEM_SAP.i | 2 | ||||
-rw-r--r-- | ace/Malloc_T.cpp | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ace/MEM_SAP.i b/ace/MEM_SAP.i index 279a9a899dd..697e082b114 100644 --- a/ace/MEM_SAP.i +++ b/ace/MEM_SAP.i @@ -60,7 +60,9 @@ ACE_MEM_SAP::set_buf_len (void *buf, size_t n) ASYS_INLINE ssize_t ACE_MEM_SAP::get_buf_len (const off_t off, void *&buf) { +#if !defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_TRACE ("ACE_MEM_SAP::get_buf_len"); +#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ if (this->shm_malloc_ == 0) return -1; diff --git a/ace/Malloc_T.cpp b/ace/Malloc_T.cpp index 1665f630257..4ca5600897e 100644 --- a/ace/Malloc_T.cpp +++ b/ace/Malloc_T.cpp @@ -297,7 +297,9 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::remove (void) template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> void * ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_malloc (size_t nbytes) { +#if !defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_TRACE ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_malloc"); +#endif /* !ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ if (this->cb_ptr_ == 0) return 0; @@ -432,7 +434,9 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::calloc (size_t nbytes, template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> void ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_free (void *ap) { +#if !defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_TRACE ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_free"); +#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ if (ap == 0 || this->cb_ptr_ == 0) return; @@ -492,7 +496,9 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_free (void *ap) template <ACE_MEM_POOL_1, class ACE_LOCK, class ACE_CB> void* ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_find (const char *name) { +#if !defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_TRACE ("ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_find"); +#endif /* !ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ if (this->cb_ptr_ == 0) return 0; |