diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-06 11:29:35 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-06 11:29:35 +0000 |
commit | 933fb0f08fe2d8c1be9099828a82e8859c3612fc (patch) | |
tree | e2ffb2674c2cca39f29a0118a9c97cdd418f373c /tests | |
parent | 82a9f6ed93dbd59be90f057664fe052422d940f7 (diff) | |
download | ATCD-933fb0f08fe2d8c1be9099828a82e8859c3612fc.tar.gz |
ChangeLogTag: Fri May 6 10:52:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Timer_Cancellation_Test.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/Timer_Cancellation_Test.cpp b/tests/Timer_Cancellation_Test.cpp index 10145d0a961..0db3da521ae 100644 --- a/tests/Timer_Cancellation_Test.cpp +++ b/tests/Timer_Cancellation_Test.cpp @@ -40,14 +40,14 @@ int Deadlock::svc (void) { ACE_DEBUG ((LM_DEBUG, - "Deadlock starts accessing Reactor and Timer Queue....\n")); + ACE_TEXT ("Deadlock starts accessing Reactor and Timer Queue....\n"))); this->reactor ()->schedule_timer (this, 0, ACE_Time_Value (1)); ACE_DEBUG ((LM_DEBUG, - "Deadlock completes accessing Reactor and Timer Queue....\n")); + ACE_TEXT ("Deadlock completes accessing Reactor and Timer Queue....\n"))); return 0; } @@ -57,7 +57,7 @@ Deadlock::handle_timeout (const ACE_Time_Value &, const void *) { ACE_DEBUG ((LM_DEBUG, - "Deadlock timeout\n")); + ACE_TEXT ("Deadlock timeout\n"))); return 0; } @@ -87,7 +87,7 @@ Event_Handler::handle_timeout (const ACE_Time_Value &, const void *) { ACE_DEBUG ((LM_DEBUG, - "Event_Handler timeout\n")); + ACE_TEXT ("Event_Handler timeout\n"))); return -1; } @@ -97,7 +97,7 @@ Event_Handler::handle_close (ACE_HANDLE, ACE_Reactor_Mask) { ACE_DEBUG ((LM_DEBUG, - "Event_Handler closed\n")); + ACE_TEXT ("Event_Handler closed\n"))); // Activate Deadlock. this->deadlock_.activate (); @@ -106,13 +106,13 @@ Event_Handler::handle_close (ACE_HANDLE, ACE_OS::sleep (1); ACE_DEBUG ((LM_DEBUG, - "Event Handler starts accessing Reactor....\n")); + ACE_TEXT ("Event Handler starts accessing Reactor....\n"))); // This is a superfluous call to the Reactor to acquire its lock. this->reactor ()->max_notify_iterations (); ACE_DEBUG ((LM_DEBUG, - "Event Handler completes accessing Reactor....\n")); + ACE_TEXT ("Event Handler completes accessing Reactor....\n"))); return 0; } |