Thanks Saúl. I've done as you suggested, set the fd to non-blocking and it solved the deadlock problem.
Btw, it's good to have a libuv maintainer as possible neovim user :) On Wed, Mar 5, 2014 at 7:42 AM, Saúl Ibarra Corretgé <[email protected]> wrote: > Ah, I think I found it. You are using a uv_pipe_t to read stdin using > uv_pipe_open. Currently uv_pipe_open doesn't set the file descriptor in > non-blocking mode, so the loop thread is probably blocked in the blocking > call to read. > > Set the fd to be non-blocking and it should work. Another approach is to use > a uv_tty_t handle, which does non-blocking reads. > > > Cheers, > > PS: As an everyday vim user for years, I'm really excited for neovim :-) > > > -- > Saúl Ibarra Corretgé > 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/groups/opt_out. -- 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/groups/opt_out.
