corrected sleep

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25744 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2004-02-11 15:22:14 +00:00
parent ac86379e2a
commit 75dd6ce410
2 changed files with 2 additions and 2 deletions

View File

@@ -542,7 +542,7 @@ void wxThread::Sleep(unsigned long milliseconds)
YieldToAnyThread();
Microseconds(&now);
msnow = (now.hi * 4294967296.0 + now.lo) ;
} while( msstart - msnow < mssleep );
} while( msnow - msstart < mssleep );
}
int wxThread::GetCPUCount()

View File

@@ -542,7 +542,7 @@ void wxThread::Sleep(unsigned long milliseconds)
YieldToAnyThread();
Microseconds(&now);
msnow = (now.hi * 4294967296.0 + now.lo) ;
} while( msstart - msnow < mssleep );
} while( msnow - msstart < mssleep );
}
int wxThread::GetCPUCount()