Switched from wxUsleep to wxMilliSleep/wxMicroSleep.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28532 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2004-07-28 16:02:50 +00:00
parent 7802e5d0b2
commit d3a919bdce
2 changed files with 10 additions and 3 deletions

View File

@@ -296,7 +296,7 @@ int wxEventLoop::Run()
while ( !Pending() && m_impl->SendIdleMessage() )
{
wxTheApp->HandleSockets();
wxUsleep(10);
wxMilliSleep(10);
}
wxTheApp->HandleSockets();
@@ -309,7 +309,7 @@ int wxEventLoop::Run()
}
}
else
wxUsleep(10);
wxMilliSleep(10);
}
return m_impl->GetExitCode();

View File

@@ -260,13 +260,20 @@ bool wxSetEnv(const wxString& variable, const wxChar *value)
#endif
}
void wxUsleep(
void wxMilliSleep(
unsigned long ulMilliseconds
)
{
::DosSleep(ulMilliseconds);
}
void wxMicroSleep(
unsigned long ulMicroseconds
)
{
::DosSleep(ulMicroseconds/1000);
}
void wxSleep(
int nSecs
)