vote up 1 vote down star

What is the best algorithm to implement a simple timer library. The library should allow the following:

  1. Timers to be started
  2. Timers to be stopped
  3. Timers to be checked whether they are still running

On Timer expiry a callback function will be called.

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.

Many timers may be simultaneously active.

The best algorithm needs to meet the following goals

  1. Be Robust to timers being started / stopped while processing a timer expiry callback
  2. Allow timers to be started, stopped and checked quickly
  3. Have a small memory footprint

Regards

flag

50% accept rate
What language should the solution be in? – Liran Orevi May 15 at 8:53
I am more interested in the algorithm than the implementation. If it helps you to know I would most likely implement it in C. Regards – Howard May May 15 at 9:16

3 Answers

vote up 1 vote down

On POSIX-ish systems, you can use the timer_create/timer_settime family of functions to provide a lot of this "for free."

link|flag
Hi Kristopher, I'll have a look at these but I am more interested in the algorithm than taking a stock library. Regards – Howard May May 15 at 9:25
vote up 1 vote down

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.

You might like to look at http://lwn.net/Articles/167897/ for details on the Linux implementation, and dig through the Linux source code to see working implementations.

link|flag
vote up 0 vote down

Is this post still alive? If yes, i have an efficient implementation of the same. Will post it here :)...so reply

link|flag
Yes it is alive, if perhaps a little unwell. – Howard May Aug 12 at 16:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.