I'm curious about the return value from a call to uv_run(l, UV_RUN_NOWAIT). 
 It's pretty clear to me that if there is nothing in the loop at all it 
will return 0.  What I'm not clear on is the situation where there are 
handlers left in the loop, but none of them is ready to go right now.  What 
I would like to write is something like:

    while( events ready to go right now ) {
        uv_run( l, UV_RUN_NOWAIT );
    }

Is this easy/possible?

Thanks,
Ben

-- 
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.

Reply via email to