summaryrefslogtreecommitdiff
path: root/ACE/ace/Semaphore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Semaphore.cpp')
-rw-r--r--ACE/ace/Semaphore.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Semaphore.cpp b/ACE/ace/Semaphore.cpp
index d1af727cf68..d2c3de17b50 100644
--- a/ACE/ace/Semaphore.cpp
+++ b/ACE/ace/Semaphore.cpp
@@ -6,7 +6,7 @@
#include "ace/Semaphore.inl"
#endif /* __ACE_INLINE__ */
-#include "ace/Log_Msg.h"
+#include "ace/Log_Category.h"
#include "ace/ACE.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
@@ -19,9 +19,9 @@ ACE_Semaphore::dump (void) const
#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Semaphore::dump");
- ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
- ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
+ ACELIB_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
+ ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
+ ACELIB_DEBUG ((LM_DEBUG, ACE_END_DUMP));
#endif /* ACE_HAS_DUMP */
}
@@ -45,7 +45,7 @@ ACE_Semaphore::ACE_Semaphore (unsigned int count,
if (ACE_OS::sema_init (&this->semaphore_, count, type,
name, arg, max) != 0)
#endif
- ACE_ERROR ((LM_ERROR,
+ ACELIB_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("ACE_Semaphore::ACE_Semaphore")));
}