summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-07-22 06:10:41 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-07-22 06:10:41 +0000
commitd47dc2caa430bcbb9cbcaabc1d77ff9576a13eaf (patch)
treef738bcc6c72a4269a952f4d3e37188ac9f405513 /ace
parent56ec798e1d50d06eff4303dc7c3e93717e95dcc3 (diff)
downloadATCD-d47dc2caa430bcbb9cbcaabc1d77ff9576a13eaf.tar.gz
ChangeLogTag: Tue Jul 22 06:00:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace')
-rw-r--r--ace/Select_Reactor_T.cpp4
-rw-r--r--ace/Timer_Heap_T.cpp2
-rw-r--r--ace/Timer_List_T.cpp2
-rw-r--r--ace/Timer_Wheel_T.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/ace/Select_Reactor_T.cpp b/ace/Select_Reactor_T.cpp
index 18fdc9e37c3..74791845f84 100644
--- a/ace/Select_Reactor_T.cpp
+++ b/ace/Select_Reactor_T.cpp
@@ -347,7 +347,7 @@ template <class ACE_SELECT_REACTOR_TOKEN> ACE_Event_Handler *
ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::find_handler
(ACE_HANDLE handle)
{
- ACE_TRACE ("ACE_Select_Reactor_T::handler");
+ ACE_TRACE ("ACE_Select_Reactor_T::find_handler");
ACE_MT (ACE_GUARD_RETURN (ACE_SELECT_REACTOR_TOKEN, ace_mon, this->token_, 0));
return this->find_handler_i (handle);
}
@@ -906,7 +906,7 @@ template <class ACE_SELECT_REACTOR_TOKEN> ACE_Event_Handler *
ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::find_handler_i
(ACE_HANDLE handle)
{
- ACE_TRACE ("ACE_Select_Reactor_T::handler_i");
+ ACE_TRACE ("ACE_Select_Reactor_T::find_handler_i");
ACE_Event_Handler *event_handler =
this->handler_rep_.find (handle);
diff --git a/ace/Timer_Heap_T.cpp b/ace/Timer_Heap_T.cpp
index 8090ca48d02..12c48e7b534 100644
--- a/ace/Timer_Heap_T.cpp
+++ b/ace/Timer_Heap_T.cpp
@@ -619,7 +619,7 @@ ACE_Timer_Heap_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE &type,
const ACE_Time_Value &future_time,
const ACE_Time_Value &interval)
{
- ACE_TRACE ("ACE_Timer_Heap_T::schedule");
+ ACE_TRACE ("ACE_Timer_Heap_T::schedule_i");
if ((this->cur_size_ + this->cur_limbo_) < this->max_size_)
{
diff --git a/ace/Timer_List_T.cpp b/ace/Timer_List_T.cpp
index d76ecba5b21..f0a89c5aeb9 100644
--- a/ace/Timer_List_T.cpp
+++ b/ace/Timer_List_T.cpp
@@ -189,7 +189,7 @@ ACE_Timer_List_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE &type,
const ACE_Time_Value &future_time,
const ACE_Time_Value &interval)
{
- ACE_TRACE ("ACE_Timer_List_T::schedule");
+ ACE_TRACE ("ACE_Timer_List_T::schedule_i");
ACE_Timer_Node_T<TYPE>* n = this->alloc_node();
diff --git a/ace/Timer_Wheel_T.cpp b/ace/Timer_Wheel_T.cpp
index 4bcdb11b3e9..35f0b27fa70 100644
--- a/ace/Timer_Wheel_T.cpp
+++ b/ace/Timer_Wheel_T.cpp
@@ -387,7 +387,7 @@ ACE_Timer_Wheel_T<TYPE, FUNCTOR, ACE_LOCK>::schedule_i (const TYPE& type,
const ACE_Time_Value& future_time,
const ACE_Time_Value& interval)
{
- ACE_TRACE ("ACE_Timer_Wheel_T::schedule");
+ ACE_TRACE ("ACE_Timer_Wheel_T::schedule_i");
ACE_Timer_Node_T<TYPE>* n = this->alloc_node ();