summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-21 04:56:45 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-02-21 04:56:45 +0000
commite2f3e23cf0711365cd48804fa82dd605ab921217 (patch)
tree0d4e87a1b68e4ad438d7fedfc0a6d55e17b714ea /tests
parentd993becc09ed895ff0df742aa3df64451aa9f356 (diff)
downloadATCD-e2f3e23cf0711365cd48804fa82dd605ab921217.tar.gz
(Consumer::svc): removed thr_yield for LynxOS, now that ACE_OS::cond_timedwait () is fixed
Diffstat (limited to 'tests')
-rw-r--r--tests/Buffer_Stream_Test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/Buffer_Stream_Test.cpp b/tests/Buffer_Stream_Test.cpp
index 1756862dc9c..bbe64249149 100644
--- a/tests/Buffer_Stream_Test.cpp
+++ b/tests/Buffer_Stream_Test.cpp
@@ -161,13 +161,6 @@ Consumer::svc (void)
for (;;)
{
-#if defined (__Lynx__)
- // ACE_OS::pthread_cond_timedwait () doesn't work on LynxOS. Until
- // we figure that out, this thr_yield () pertrubs the test enough
- // so that it is never called.
- ACE_OS::thr_yield ();
-#endif /* __Lynx__ */
-
this->timeout_.sec (ACE_OS::time (0) + 4); // Wait for upto 4 seconds
result = this->getq (mb, &this->timeout_);