Efficient Timer Algorithm - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T09:17:30Zhttp://stackoverflow.com/feeds/question/867621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/867621/efficient-timer-algorithm1Efficient Timer AlgorithmHoward May2009-05-15T08:47:36Z2009-07-28T14:42:19Z
<p>What is the best algorithm to implement a simple timer library. The library should allow the following:</p>
<ol>
<li>Timers to be started</li>
<li>Timers to be stopped</li>
<li>Timers to be checked whether they are still running</li>
</ol>
<p>On Timer expiry a callback function will be called.</p>
<p>The timer module will allow timers to have a time resolution of Ns and the module shall be given a kick every Ns to prompt the module to check for expired timers.</p>
<p>Many timers may be simultaneously active.</p>
<p>The best algorithm needs to meet the following goals</p>
<ol>
<li>Be Robust to timers being started / stopped while processing a timer expiry callback</li>
<li>Allow timers to be started, stopped and checked quickly</li>
<li>Have a small memory footprint</li>
</ol>
<p>Regards</p>
http://stackoverflow.com/questions/867621/efficient-timer-algorithm/867693#8676931Answer by Kristopher Johnson for Efficient Timer AlgorithmKristopher Johnson2009-05-15T09:11:09Z2009-05-15T09:11:09Z<p>On POSIX-ish systems, you can use the <a href="http://www.opengroup.org/onlinepubs/007908799/xsh/timer%5Fcreate.html" rel="nofollow"><code>timer_create</code>/<code>timer_settime</code></a> family of functions to provide a lot of this "for free."</p>
http://stackoverflow.com/questions/867621/efficient-timer-algorithm/867761#8677611Answer by kquinn for Efficient Timer Algorithmkquinn2009-05-15T09:38:11Z2009-05-15T09:38:11Z<p>Timers are typically best implemented in an operating system kernel, at the assembly/C level, making use of platform-specific features like APIC timers wherever possible.</p>
<p>You might like to look at <a href="http://lwn.net/Articles/167897/" rel="nofollow">http://lwn.net/Articles/167897/</a> for details on the Linux implementation, and dig through the Linux source code to see working implementations.</p>
http://stackoverflow.com/questions/867621/efficient-timer-algorithm/1194583#11945830Answer by Friend for Efficient Timer AlgorithmFriend2009-07-28T14:42:19Z2009-07-28T14:42:19Z<p>Is this post still alive? If yes, i have an efficient implementation of the same. Will post it here :)...so reply</p>