I'm implementing a simple windowing library as a Ruby C extension. Windows have a handle_events! method that enters their native event loop.

The problem is that I want one event loop per window and the method blocks. I'd like the method to return immediately and let the loop run in a separate thread. What would be the best way to achieve this?

I tried using rb_thread_call_without_gvl to call the event loop function, and then use rb_thread_call_with_gvl in order to call the window's callbacks, which are Procs. Full source code can be found here.

It still works, but not as I intended: the method still blocks. Is this even possible with Ruby's threading model?

link|improve this question

The answer to [this][1] question may help you. [1]: stackoverflow.com/questions/56087/… – Francisco Soto Oct 25 '11 at 18:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.