summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-16 19:55:00 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-16 19:55:00 +0000
commitf7bad2a3c1f9195337cd5bd0afcfa4d0ab66e981 (patch)
treefcab3dcec698aa9c7a7f9b065cc2c3a43de400d5 /ace
parent8db67d60e925d895abe744dce5fdcb0f722ce2a1 (diff)
downloadATCD-f7bad2a3c1f9195337cd5bd0afcfa4d0ab66e981.tar.gz
ChangeLogTag:Thu Mar 16 11:51:49 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/MEM_SAP.i2
-rw-r--r--ace/Malloc_T.cpp6
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;