有关onTimer()的疑问?该怎么处理

有关onTimer()的疑问?
有个疑问:
ontimer事件是一秒响应一次,调用里面的函数画一个点出来
但是里面的函数我在win32里调试的时候,6s才出一个结果?
mfc ontimer()里面就变快了??

------解决方案--------------------
“调试的时候”定时器不准的。
------解决方案--------------------
WM_TIMER是个低优先级的消息,只有当消息队列中没有其它高优先级并等待处理的消息的时候才会去响应它,所以有延时很正常。

The WM_TIMER message is a low-priority message. The GetMessage and PeekMessage functions post this message only when no other higher-priority messages are in the thread's message queue.
------解决方案--------------------
你可以测测看OnTimer里的代码执行时间是多少