summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Server_Request.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-06-22 14:08:40 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-06-22 14:08:40 +0000
commita114cfc8b7c6e01e2e00f4062f7df37bff770a45 (patch)
tree9b246a3cf28ed552a87e3eddb61a72ee1393fcc4 /TAO/tao/TAO_Server_Request.cpp
parenta56cc0f2fd4d57f7779cc52cbc99dc3a2d3a10f6 (diff)
downloadATCD-a114cfc8b7c6e01e2e00f4062f7df37bff770a45.tar.gz
ChangeLogTag: Tue Jun 22 14:08:31 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/TAO_Server_Request.cpp')
-rw-r--r--TAO/tao/TAO_Server_Request.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/TAO_Server_Request.cpp b/TAO/tao/TAO_Server_Request.cpp
index 18ca88b8385..12b7d58ff10 100644
--- a/TAO/tao/TAO_Server_Request.cpp
+++ b/TAO/tao/TAO_Server_Request.cpp
@@ -274,15 +274,15 @@ TAO_ServerRequest::tao_send_reply_exception (CORBA::Exception &ex)
}
// Create a new output CDR stream
-#if defined(ACE_HAS_PURIFY)
- // Only inititialize the buffer if we're compiling with Purify.
+#if defined(ACE_HAS_MEMORY_PROFILER)
+ // Only inititialize the buffer if we're compiling with a profiler.
// Otherwise, there is no real need to do so, especially since
// we can avoid the initialization overhead at runtime if we
- // are not compiling with Purify support.
+ // are not compiling with memory profiler support.
char repbuf[ACE_CDR::DEFAULT_BUFSIZE] = { 0 };
#else
char repbuf[ACE_CDR::DEFAULT_BUFSIZE];
-#endif /* ACE_HAS_PURIFY */
+#endif /* ACE_HAS_MEMORY_PROFILER */
TAO_OutputCDR output (repbuf,
sizeof repbuf,
TAO_ENCAP_BYTE_ORDER,