开发平台(Platform): Windows7
编译器(Ex: GCC, clang, VC++...) VC++
mmtimer的时间间隔设为2ms,其中故意放一个会超时的工作 > 2ms
以MFC Timer来看, 时间就是被打乱而已
但mmtimer会被影响,不只是本身的UI会卡住,连同Windows也会跟着卡住
请问有大大知道为什么会这样吗?
谢谢
const int timePeriod = 2;
const int timeRes = 1;
void CALLBACK TimeEvent
(UINT uTimerID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2)
{
for (int i=0; i<999999; i++)
{
}
}