In general it doesn't make sense that scheduling a timer for 1ms when the system tick is 250Hz would inherently cause any additional CPU burden than if the system tick were 1000Hz. The only thing that should happen in that case is that the timer will be triggered later than 1ms -- potentially 4ms later. Since we're asking for a 1ms repeated timer from QTimer, is it possible that when the system tick expires, QTimer realizes that 4 timer events should have happened and calls them all at once? This would cause us to issue 4 polls every 4ms instead of 1 poll every 1ms. On Thu, May 24, 2012 at 12:43 PM, RJ Ryan