summaryrefslogtreecommitdiff
path: root/ace/Malloc_T.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2002-08-31 15:34:48 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2002-08-31 15:34:48 +0000
commit81e6f1c60d9d9837fc244cdf5f1fc9bd9aeccf6a (patch)
treea722f8a663c5773d88a13c23a9576f0514c83807 /ace/Malloc_T.cpp
parentca4e0a4c9d4f317b697143417ebde0d20802ee08 (diff)
downloadATCD-81e6f1c60d9d9837fc244cdf5f1fc9bd9aeccf6a.tar.gz
ChangeLogTag:Sat Aug 31 10:32:38 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
Diffstat (limited to 'ace/Malloc_T.cpp')
-rw-r--r--ace/Malloc_T.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ace/Malloc_T.cpp b/ace/Malloc_T.cpp
index 703232d0d45..b764624b767 100644
--- a/ace/Malloc_T.cpp
+++ b/ace/Malloc_T.cpp
@@ -392,11 +392,10 @@ ACE_Malloc_T<ACE_MEM_POOL_2, ACE_LOCK, ACE_CB>::shared_malloc (size_t nbytes)
{
currp = prevp->next_block_;
}
-#endif
+#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
// Search the freelist to locate a block of the appropriate size.
-
while (1)
// *Warning* Do not use "continue" within this while-loop.