[Haskell-cafe] threadDelay granularity

Peter Verswyvelen bugfact at gmail.com
Tue Apr 7 08:53:20 EDT 2009


I think this is an RTS option.
http://www.haskell.org/ghc/docs/latest/html/users_guide/using-concurrent.html



On Tue, Apr 7, 2009 at 1:41 PM, Ulrik Rasmussen <haskell at utr.dk> wrote:

> Hello.
>
> I am writing a simple game in Haskell as an exercise, and in the
> rendering loop I want to cap the framerate to 60fps. I had planned to do
> this with GHC.Conc.threadDelay, but looking at it's documentation, I
> discovered that it can only delay the thread in time spans that are
> multiples of 20ms:
>
>
> http://www.haskell.org/ghc/docs/6.4/html/libraries/base/Control.Concurrent.html
>
> I need a much finer granularity than that, so I wondered if it is
> possible to either get a higher resolution for threadDelay, or if there
> is an alternative to threadDelay?
>
> I noticed that the SDL library includes the function "delay", which
> indeed works with a resolution down to one millisecond. However, since
> I'm using HOpenGL and GLUT, I think it would be a little overkill to
> depend on SDL just for this :).
>
>
> Thanks,
>
> Ulrik Rasmussen
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.haskell.org/pipermail/haskell-cafe/attachments/20090407/3d9b7e56/attachment.htm


More information about the Haskell-Cafe mailing list