T. Bharath fixed his mm lib timer resolution fix
This commit is contained in:
parent
eb164098b7
commit
2443e1f38c
@ -56,10 +56,14 @@ gettimeofday (struct timeval *tp, void *nothing)
|
|||||||
** of 1ms.Need to link against winmm.lib for this
|
** of 1ms.Need to link against winmm.lib for this
|
||||||
**/
|
**/
|
||||||
unsigned long Ticks = 0;
|
unsigned long Ticks = 0;
|
||||||
|
unsigned long Sec =0;
|
||||||
|
unsigned long Usec = 0;
|
||||||
Ticks = timeGetTime();
|
Ticks = timeGetTime();
|
||||||
tp->tv_sec = Ticks%1000;
|
|
||||||
tp->tv_usec = (Ticks - (tp->tv_sec*1000))*1000;
|
Sec = Ticks/1000;
|
||||||
|
Usec = (Ticks - (Sec*1000))*1000;
|
||||||
|
tp->tv_sec = Sec;
|
||||||
|
tp->tv_usec = Usec;
|
||||||
#endif
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user