Thanks for your patience and help. After poking around a little more, I'm pretty sure what I'm going for is very closely related to embedding libuv in another event loop. (The difference being, the "other event loop" in my case is a weirder pattern.) My impression is that embedding
That's correct, embedding doesn't work on Windows right now :-/
is still shaking out (for example, it doesn't work on Windows?). For the time being, I think I'll just run the event loop in its default mode in its own thread and use asynch events to get messages back and forth.
That should work. Note that the only thread-safe function is uv_async_send, creating a handle for example is not thread-safe.
Cheers, -- Saúl Ibarra Corretgé http://bettercallsaghul.com -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
