Remove 100ms fudge factor on timer expiry.

If we immediately handle timers that have already expired, there doesn't
seem to be a compelling reason to add 100ms to the expiry of unexpired timers.
This commit is contained in:
Kevin Easton
2015-05-16 14:13:11 +10:00
parent af017816e2
commit e33393ab86

View File

@@ -620,5 +620,5 @@ time_t TimerTimeout (void)
if (t < timeout_in)
timeout_in = t * 1000;
return (timeout_in < 0) ? 0 : timeout_in + 100;
return (timeout_in < 0) ? 0 : timeout_in;
}