Efficient Timer Algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T09:17:30Z http://stackoverflow.com/feeds/question/867621 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/867621/efficient-timer-algorithm 1 Efficient Timer Algorithm Howard May 2009-05-15T08:47:36Z 2009-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#867693 1 Answer by Kristopher Johnson for Efficient Timer Algorithm Kristopher Johnson 2009-05-15T09:11:09Z 2009-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#867761 1 Answer by kquinn for Efficient Timer Algorithm kquinn 2009-05-15T09:38:11Z 2009-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#1194583 0 Answer by Friend for Efficient Timer Algorithm Friend 2009-07-28T14:42:19Z 2009-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>