summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_3541_Regression_Test.cpp
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2009-01-22 13:58:06 +0000
committermsmit <msmit@remedy.nl>2009-01-22 13:58:06 +0000
commit1c8c657206c17a049089ec0c4f895e5e2fad9318 (patch)
tree96a6564655235aaeac1c4ddc8159bdbe84df412c /ACE/tests/Bug_3541_Regression_Test.cpp
parentbe6afe091d03b2bd8820e11628f9464d2049ef7d (diff)
downloadATCD-1c8c657206c17a049089ec0c4f895e5e2fad9318.tar.gz
Thu Jan 22 13:51:01 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3500_Regression_Test.cpp: * tests/Bug_3541_Regression_Test.cpp: Fixed compiler errors on WinCE target.
Diffstat (limited to 'ACE/tests/Bug_3541_Regression_Test.cpp')
-rw-r--r--ACE/tests/Bug_3541_Regression_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Bug_3541_Regression_Test.cpp b/ACE/tests/Bug_3541_Regression_Test.cpp
index b4a9893ac01..ad2a24196de 100644
--- a/ACE/tests/Bug_3541_Regression_Test.cpp
+++ b/ACE/tests/Bug_3541_Regression_Test.cpp
@@ -32,7 +32,7 @@ run_main (int, ACE_TCHAR *[])
// ACE_OS::event_init()
- const ACE_TCHAR *eventName = "Bug3541_Event";
+ const ACE_TCHAR *eventName = ACE_TEXT ("Bug3541_Event");
ACE_Event event0(0, // int manual_reset = 0
0, // int initial_state = 0
@@ -72,7 +72,7 @@ run_main (int, ACE_TCHAR *[])
// ACE_OS::sema_init
- const ACE_TCHAR *semaphoreName = "Bug3541_Semaphore";
+ const ACE_TCHAR *semaphoreName = ACE_TEXT ("Bug3541_Semaphore");
ACE_Semaphore semaphore0(1, // int count = 1
USYNC_PROCESS, // int type = USYNC_THREAD
@@ -110,7 +110,7 @@ run_main (int, ACE_TCHAR *[])
// ACE_OS::mutex_init()
- const ACE_TCHAR *mutexName = "Bug3541_Mutex";
+ const ACE_TCHAR *mutexName = ACE_TEXT ("Bug3541_Mutex");
ACE_Mutex mutex0(USYNC_PROCESS, // int type = USYNC_THREAD
mutexName); // const ACE_TCHAR *name = 0