You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 20, 2022. It is now read-only.
Thanks for raising this and investigating. joyent/libuv#796 is really old and closed so I'm not sure if that helps directly, but is useful context. @saghul Do you have any thoughts? Am I using uv_close() wrong? Thank you.
@nikhilm No, I don't think you are using uv_close() wrongly. I just took the latest libuv source and rebuilt. The sample code now runs as expected, as do the unit tests for uv_spawn.
As you pointed out, the issue I cited was old and probably irrelevant. I should have been looking here:
Referring to this code...
Please also refer to this, which I think might be relevant.
After the call to uv_close() in the on_exit callback, the next time the following executes in core.c:498:
if ((mode == UV_RUN_ONCE && !ran_pending) || mode == UV_RUN_DEFAULT) timeout = uv_backend_timeout(loop);
uv_backend_timeout returns INFINITE. When the next loop then reaches core.c:420 (uv_poll_ex):
success = pGetQueuedCompletionStatusEx(loop->iocp, overlappeds, ARRAY_SIZE(overlappeds), &count, timeout, FALSE);
the program (unsurprisingly) hangs.
Two possible workarounds that fix the issue are:
call
uv_stop(uv_default_loop());
after the call to uv_close(), orin the last line in main.c, replace this:
return uv_run(loop, UV_RUN_DEFAULT);
with
while (0 != uv_run(loop, UV_RUN_ONCE)); return 0;
I am new to libuv. If the above two options are incorrect or ill-advised, what is the correct fix for this?
The text was updated successfully, but these errors were encountered: