From 537046fb5253868dbf1cb8573b00f1f3d5a9ded4 Mon Sep 17 00:00:00 2001 From: huangh Date: Thu, 11 Apr 2013 15:50:32 +0000 Subject: Thu Apr 11 15:45:41 UTC 2013 Huang-Ming Huang --- ACE/ace/Monitor_Point_Registry.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ACE/ace/Monitor_Point_Registry.cpp') 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); -- cgit v1.2.1