use sleep instead of usleep on window

This commit is contained in:
Yannick Verdie 2010-07-12 15:24:15 +00:00
parent f2971aebd0
commit e11a77cb70

View File

@ -230,6 +230,8 @@ CV_IMPL int cvWaitKey( int arg )
if (arg>0) if (arg>0)
timer.start(arg); timer.start(arg);
//QMutex dummy;
while(!guiMainThread._bTimeOut) while(!guiMainThread._bTimeOut)
{ {
qApp->processEvents(QEventLoop::AllEvents); qApp->processEvents(QEventLoop::AllEvents);
@ -245,9 +247,25 @@ CV_IMPL int cvWaitKey( int arg )
mutexKey.unlock(); mutexKey.unlock();
if (result!=-1) if (result!=-1)
{
break; break;
}
else else
{
/*
* //will not work, I broke the event loop !!!!
dummy.lock();
QWaitCondition waitCondition;
waitCondition.wait(&dummy, 2);
*/
#if defined WIN32 || defined _WIN32 || defined WIN64 || defined _WIN64
sleep(2);
#else
usleep(2);//to decrease CPU usage usleep(2);//to decrease CPU usage
#endif
}
} }
guiMainThread._bTimeOut = false; guiMainThread._bTimeOut = false;
} }