diff options
-rw-r--r-- | tests/TSS_Test.cpp | 2 | ||||
-rw-r--r-- | tests/Task_Test.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/TSS_Test.cpp b/tests/TSS_Test.cpp index 2fb12ca9a33..09a765e0d32 100644 --- a/tests/TSS_Test.cpp +++ b/tests/TSS_Test.cpp @@ -189,7 +189,7 @@ main (int, char *[]) thread_handles) == -1) ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "spawn_n"), 1); -#if !defined (VXWORKS) +#if defined (VXWORKS) // VxWorks doesn't support thr_join() semantics... Someday // we'll fix this. ACE_Thread_Manager::instance ()->wait (); diff --git a/tests/Task_Test.cpp b/tests/Task_Test.cpp index 65aeb0b14d6..fafff425f2a 100644 --- a/tests/Task_Test.cpp +++ b/tests/Task_Test.cpp @@ -110,7 +110,7 @@ main (int, char *[]) n_iterations, thread_handles); -#if !defined (VXWORKS) +#if defined (VXWORKS) // VxWorks doesn't support thr_join() semantics... Someday // we'll fix this. ACE_Thread_Manager::instance ()->wait (); |