Reduced waiting time.

This commit is contained in:
Vincent Richard 2005-10-03 12:26:27 +00:00
parent bdc2664ee2
commit e7ca1d2465

View File

@ -217,7 +217,7 @@ void posixHandler::wait() const
struct timespec ts; struct timespec ts;
ts.tv_sec = 0; ts.tv_sec = 0;
ts.tv_nsec = 150000000; // 150 ms ts.tv_nsec = 500000; // 500 microseconds
nanosleep(&ts, NULL); nanosleep(&ts, NULL);
} }