[racket] threads and Windows 7
I can't help with the Windows 7 problem, but you probably don't want
that thread there...
On Wed, Nov 10, 2010 at 2:42 PM, Sébastien Cano <hkjangshu at gmail.com> wrote:
> Hi,
> I'm currently working on a space invaders and I'm facing a problem with
> Windows 7.
>
> Given that I'm not really familiar with the concept of thread, I put my
> canvas' paint-callback block in a thread... like :
>
> (paint-callback (lambda ()
> (thread (lambda ()
> ......functions .....
> (send my-canvas on-paint)))))
...