summaryrefslogtreecommitdiff
path: root/ACE/tests/Recursive_Condition_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-04-01 18:46:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-04-01 18:46:42 +0000
commit3c3ee35cc6561633954f6484c674f07e52439a94 (patch)
tree3c9f5dfc39091d1b75de31141bf5853a4b3b2577 /ACE/tests/Recursive_Condition_Test.cpp
parent212321688dd66efda67e708d403953ec8864dd16 (diff)
downloadATCD-3c3ee35cc6561633954f6484c674f07e52439a94.tar.gz
Wed Apr 1 19:48:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Log_Msg_Test.cpp: Fix for vxworks 6.7 * tests/Recursive_Condition_Test.cpp: Const change and added a debug statement * tests/Sig_Handlers_Test.cpp: Removed not needed include and fixed compile issue * tests/tests.mpc: Added missing Sig_Handlers_Test
Diffstat (limited to 'ACE/tests/Recursive_Condition_Test.cpp')
-rw-r--r--ACE/tests/Recursive_Condition_Test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ACE/tests/Recursive_Condition_Test.cpp b/ACE/tests/Recursive_Condition_Test.cpp
index 5576b2cf674..6786b478681 100644
--- a/ACE/tests/Recursive_Condition_Test.cpp
+++ b/ACE/tests/Recursive_Condition_Test.cpp
@@ -85,7 +85,7 @@ waiter (void *)
else
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t) %p\n"), ACE_TEXT ("wait")));
- int copy_int = protected_int; // Copy it in case it's erroneously changing
+ int const copy_int = protected_int; // Copy it in case it's erroneously changing
if (copy_int != 0)
ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%t) waiter found protected_int %d\n"),
copy_int));
@@ -288,6 +288,7 @@ run_main (int, ACE_TCHAR *[])
++status;
}
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Starting to sleep\n")));
ACE_OS::sleep (10);
timer_queue.deactivate ();
timer_queue.wait ();