windows: ensure minimum possible timer resolution for sleep

This commit is contained in:
Robin Hübner 2018-05-01 09:47:34 +02:00
parent 9834b690ae
commit 8cb1ff9452
1 changed files with 6 additions and 0 deletions

View File

@ -188,6 +188,10 @@ void OS_Windows::initialize_core() {
ticks_start = 0;
ticks_start = get_ticks_usec();
// set minimum resolution for periodic timers, otherwise Sleep(n) may wait at least as
// long as the windows scheduler resolution (~16-30ms) even for calls like Sleep(1)
timeBeginPeriod(1);
process_map = memnew((Map<ProcessID, ProcessInfo>));
IP_Unix::make_default();
@ -1261,6 +1265,8 @@ void OS_Windows::finalize() {
void OS_Windows::finalize_core() {
timeEndPeriod(1);
memdelete(process_map);
TCPServerWinsock::cleanup();