From e7ca1d246536288764a08ca61e3aa905fcaf009a Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 3 Oct 2005 12:26:27 +0000 Subject: [PATCH] Reduced waiting time. --- src/platforms/posix/posixHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp index 91236a4f..ef7e55cc 100644 --- a/src/platforms/posix/posixHandler.cpp +++ b/src/platforms/posix/posixHandler.cpp @@ -217,7 +217,7 @@ void posixHandler::wait() const struct timespec ts; ts.tv_sec = 0; - ts.tv_nsec = 150000000; // 150 ms + ts.tv_nsec = 500000; // 500 microseconds nanosleep(&ts, NULL); }