summaryrefslogtreecommitdiff
path: root/ACE/ace/Monitor_Point_Registry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Monitor_Point_Registry.cpp')
-rw-r--r--ACE/ace/Monitor_Point_Registry.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Monitor_Point_Registry.cpp b/ACE/ace/Monitor_Point_Registry.cpp
index a451484b846..d38165b445f 100644
--- a/ACE/ace/Monitor_Point_Registry.cpp
+++ b/ACE/ace/Monitor_Point_Registry.cpp
@@ -29,7 +29,7 @@ namespace ACE
{
if (type == 0)
{
- ACE_ERROR_RETURN ((LM_ERROR,
+ ACELIB_ERROR_RETURN ((LM_ERROR,
"registry add: null type\n"),
false);
}
@@ -44,12 +44,12 @@ namespace ACE
status = this->map_.bind (type->name (), type);
/// Temporary debugging code.
-// ACE_DEBUG ((LM_DEBUG, "adding %s\n", type->name ()));
+// ACELIB_DEBUG ((LM_DEBUG, "adding %s\n", type->name ()));
}
if (status == -1)
{
- ACE_ERROR_RETURN ((LM_ERROR,
+ ACELIB_ERROR_RETURN ((LM_ERROR,
"registry add: map bind failed\n"),
false);
}
@@ -62,7 +62,7 @@ namespace ACE
{
if (name == 0)
{
- ACE_ERROR_RETURN ((LM_ERROR,
+ ACELIB_ERROR_RETURN ((LM_ERROR,
"registry remove: null name\n"),
false);
}
@@ -77,7 +77,7 @@ namespace ACE
status = this->map_.unbind (name_str, mp);
/// Temporary debugging code.
-// ACE_DEBUG ((LM_DEBUG, "removing %s\n", name_str.c_str ()));
+// ACELIB_DEBUG ((LM_DEBUG, "removing %s\n", name_str.c_str ()));
}
if (status == -1)
@@ -88,7 +88,7 @@ namespace ACE
// is using malloc with placement, then free, which may bypass the
// normal destructors. In any case, it happens only at shutdown
// and there seems to be no memory leak.
-// ACE_ERROR_RETURN ((LM_ERROR,
+// ACELIB_ERROR_RETURN ((LM_ERROR,
// "registry remove: unbind failed for %s\n",
// name),
// false);