summaryrefslogtreecommitdiff
path: root/tests/Recursive_Mutex_Test.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commita7c03cabf931b077d70c6f80ec02c7728a429f49 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /tests/Recursive_Mutex_Test.cpp
parent2aa7b10780ad7c670f588dce4ec341351a0646aa (diff)
downloadATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'tests/Recursive_Mutex_Test.cpp')
-rw-r--r--tests/Recursive_Mutex_Test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Recursive_Mutex_Test.cpp b/tests/Recursive_Mutex_Test.cpp
index 8bfc818a0e6..8cd882d53d5 100644
--- a/tests/Recursive_Mutex_Test.cpp
+++ b/tests/Recursive_Mutex_Test.cpp
@@ -47,7 +47,7 @@ recursive_worker (size_t nesting_level,
{
ACE_ASSERT (rm->acquire () == 0);
ACE_DEBUG ((LM_DEBUG,
- ASYS_TEXT ("(%P|%t) = acquired, nesting = %d, thread id = %u\n"),
+ ACE_TEXT ("(%P|%t) = acquired, nesting = %d, thread id = %u\n"),
rm->get_nesting_level (),
rm->get_thread_id ()));
@@ -56,7 +56,7 @@ recursive_worker (size_t nesting_level,
ACE_ASSERT (rm->release () == 0);
ACE_DEBUG ((LM_DEBUG,
- ASYS_TEXT ("(%P|%t) = released, nesting = %d, thread id = %u\n"),
+ ACE_TEXT ("(%P|%t) = released, nesting = %d, thread id = %u\n"),
rm->get_nesting_level (),
rm->get_thread_id ()));
}
@@ -75,9 +75,9 @@ worker (void *arg)
#endif /* ACE_HAS_THREADS */
int
-main (int, ASYS_TCHAR *[])
+main (int, ACE_TCHAR *[])
{
- ACE_START_TEST (ASYS_TEXT ("Recursive_Mutex_Test"));
+ ACE_START_TEST (ACE_TEXT ("Recursive_Mutex_Test"));
#if defined (ACE_HAS_THREADS)
ACE_Recursive_Thread_Mutex rm;
@@ -88,7 +88,7 @@ main (int, ASYS_TCHAR *[])
ACE_Thread_Manager::instance ()->wait ();
#else
ACE_ERROR ((LM_ERROR,
- ASYS_TEXT ("ACE doesn't support recursive process mutexes on this platform\n")));
+ ACE_TEXT ("ACE doesn't support recursive process mutexes on this platform\n")));
#endif /* ACE_WIN32 */
ACE_END_TEST;
return 0;